2019-11-05 18:37:27 -08:00
|
|
|
if (DEFINED ENV{AZURECIREPO})
|
|
|
|
set(BUILD_REPOSITORY $ENV{AZURECIREPO})
|
2019-02-06 16:55:14 -08:00
|
|
|
endif()
|
2019-10-04 21:09:49 -07:00
|
|
|
if (DEFINED ENV{TITLEBARFORMATIDLE})
|
|
|
|
set(TITLE_BAR_FORMAT_IDLE $ENV{TITLEBARFORMATIDLE})
|
|
|
|
endif ()
|
|
|
|
if (DEFINED ENV{TITLEBARFORMATRUNNING})
|
|
|
|
set(TITLE_BAR_FORMAT_RUNNING $ENV{TITLEBARFORMATRUNNING})
|
|
|
|
endif ()
|
|
|
|
if (DEFINED ENV{DISPLAYVERSION})
|
|
|
|
set(DISPLAY_VERSION $ENV{DISPLAYVERSION})
|
|
|
|
endif ()
|
2020-01-15 23:12:50 -08:00
|
|
|
|
|
|
|
# Pass the path to git to the GenerateSCMRev.cmake as well
|
|
|
|
find_package(Git QUIET)
|
|
|
|
|
2019-01-13 20:58:46 -08:00
|
|
|
add_custom_command(OUTPUT scm_rev.cpp
|
2019-02-06 16:55:14 -08:00
|
|
|
COMMAND ${CMAKE_COMMAND}
|
2021-06-09 00:35:50 -07:00
|
|
|
-DSRC_DIR=${CMAKE_SOURCE_DIR}
|
|
|
|
-DBUILD_REPOSITORY=${BUILD_REPOSITORY}
|
|
|
|
-DTITLE_BAR_FORMAT_IDLE=${TITLE_BAR_FORMAT_IDLE}
|
|
|
|
-DTITLE_BAR_FORMAT_RUNNING=${TITLE_BAR_FORMAT_RUNNING}
|
|
|
|
-DBUILD_TAG=${BUILD_TAG}
|
|
|
|
-DBUILD_ID=${DISPLAY_VERSION}
|
|
|
|
-DGIT_EXECUTABLE=${GIT_EXECUTABLE}
|
|
|
|
-P ${CMAKE_SOURCE_DIR}/CMakeModules/GenerateSCMRev.cmake
|
2019-01-13 20:58:46 -08:00
|
|
|
DEPENDS
|
2021-07-18 16:56:50 -07:00
|
|
|
# Check that the scm_rev files haven't changed
|
2019-01-13 20:58:46 -08:00
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/scm_rev.cpp.in"
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/scm_rev.h"
|
|
|
|
# technically we should regenerate if the git version changed, but its not worth the effort imo
|
|
|
|
"${CMAKE_SOURCE_DIR}/CMakeModules/GenerateSCMRev.cmake"
|
2021-06-09 00:35:50 -07:00
|
|
|
VERBATIM
|
2019-01-13 20:58:46 -08:00
|
|
|
)
|
2014-04-23 18:43:57 -07:00
|
|
|
|
2018-01-17 16:37:34 -08:00
|
|
|
add_library(common STATIC
|
2019-10-15 11:47:42 -07:00
|
|
|
algorithm.h
|
2018-01-17 16:37:34 -08:00
|
|
|
alignment.h
|
2021-04-01 23:43:26 -07:00
|
|
|
assert.cpp
|
2018-01-17 16:37:34 -08:00
|
|
|
assert.h
|
2020-03-07 14:59:42 -08:00
|
|
|
atomic_ops.h
|
2018-09-16 11:05:51 -07:00
|
|
|
detached_tasks.cpp
|
|
|
|
detached_tasks.h
|
2020-11-19 20:52:37 -08:00
|
|
|
bit_cast.h
|
2018-01-17 16:37:34 -08:00
|
|
|
bit_field.h
|
2020-11-27 14:13:18 -08:00
|
|
|
bit_set.h
|
2018-12-19 12:25:12 -08:00
|
|
|
bit_util.h
|
2018-04-06 21:48:22 -07:00
|
|
|
cityhash.cpp
|
|
|
|
cityhash.h
|
2018-01-17 16:37:34 -08:00
|
|
|
common_funcs.h
|
|
|
|
common_types.h
|
2020-08-03 04:28:54 -07:00
|
|
|
concepts.h
|
2020-11-25 18:03:50 -08:00
|
|
|
div_ceil.h
|
2020-03-16 13:48:53 -07:00
|
|
|
dynamic_library.cpp
|
|
|
|
dynamic_library.h
|
2021-09-08 11:36:20 -07:00
|
|
|
error.cpp
|
|
|
|
error.h
|
2021-10-31 18:20:51 -07:00
|
|
|
expected.h
|
2020-02-04 11:06:23 -08:00
|
|
|
fiber.cpp
|
|
|
|
fiber.h
|
2021-05-25 16:32:56 -07:00
|
|
|
fs/file.cpp
|
|
|
|
fs/file.h
|
|
|
|
fs/fs.cpp
|
|
|
|
fs/fs.h
|
|
|
|
fs/fs_paths.h
|
|
|
|
fs/fs_types.h
|
|
|
|
fs/fs_util.cpp
|
|
|
|
fs/fs_util.h
|
|
|
|
fs/path_util.cpp
|
|
|
|
fs/path_util.h
|
2018-01-17 16:37:34 -08:00
|
|
|
hash.h
|
2018-08-09 17:43:45 -07:00
|
|
|
hex_util.cpp
|
|
|
|
hex_util.h
|
2021-06-05 02:23:25 -07:00
|
|
|
host_memory.cpp
|
|
|
|
host_memory.h
|
2021-09-20 12:56:55 -07:00
|
|
|
input.h
|
2020-12-27 01:58:16 -08:00
|
|
|
intrusive_red_black_tree.h
|
2021-06-23 14:18:27 -07:00
|
|
|
literals.h
|
2018-01-17 16:37:34 -08:00
|
|
|
logging/backend.cpp
|
|
|
|
logging/backend.h
|
|
|
|
logging/filter.cpp
|
|
|
|
logging/filter.h
|
|
|
|
logging/log.h
|
2021-09-30 13:11:47 -07:00
|
|
|
logging/log_entry.h
|
2018-01-17 16:37:34 -08:00
|
|
|
logging/text_formatter.cpp
|
|
|
|
logging/text_formatter.h
|
2021-06-13 07:31:47 -07:00
|
|
|
logging/types.h
|
2019-02-07 21:45:50 -08:00
|
|
|
lz4_compression.cpp
|
|
|
|
lz4_compression.h
|
2018-01-17 16:37:34 -08:00
|
|
|
math_util.h
|
2020-05-17 11:45:12 -07:00
|
|
|
memory_detect.cpp
|
|
|
|
memory_detect.h
|
2018-01-17 16:37:34 -08:00
|
|
|
microprofile.cpp
|
|
|
|
microprofile.h
|
|
|
|
microprofileui.h
|
2021-01-20 15:09:57 -08:00
|
|
|
nvidia_flags.cpp
|
|
|
|
nvidia_flags.h
|
2019-03-02 12:20:28 -08:00
|
|
|
page_table.cpp
|
|
|
|
page_table.h
|
2018-01-17 16:37:34 -08:00
|
|
|
param_package.cpp
|
|
|
|
param_package.h
|
2020-12-27 01:58:16 -08:00
|
|
|
parent_of_member.h
|
2021-05-28 04:14:14 -07:00
|
|
|
point.h
|
2018-01-17 16:37:34 -08:00
|
|
|
quaternion.h
|
2018-09-08 06:28:39 -07:00
|
|
|
ring_buffer.h
|
2018-01-17 16:37:34 -08:00
|
|
|
scm_rev.cpp
|
|
|
|
scm_rev.h
|
|
|
|
scope_exit.h
|
2021-04-14 16:07:40 -07:00
|
|
|
settings.cpp
|
|
|
|
settings.h
|
|
|
|
settings_input.cpp
|
|
|
|
settings_input.h
|
2020-02-04 07:23:12 -08:00
|
|
|
spin_lock.cpp
|
|
|
|
spin_lock.h
|
2020-10-26 20:07:36 -07:00
|
|
|
stream.cpp
|
|
|
|
stream.h
|
2018-01-17 16:37:34 -08:00
|
|
|
string_util.cpp
|
|
|
|
string_util.h
|
|
|
|
swap.h
|
|
|
|
telemetry.cpp
|
|
|
|
telemetry.h
|
|
|
|
thread.cpp
|
|
|
|
thread.h
|
|
|
|
thread_queue_list.h
|
2020-12-29 16:36:35 -08:00
|
|
|
thread_worker.h
|
2018-01-17 16:37:34 -08:00
|
|
|
threadsafe_queue.h
|
2020-05-11 14:51:26 -07:00
|
|
|
time_zone.cpp
|
|
|
|
time_zone.h
|
2021-02-08 18:05:13 -08:00
|
|
|
tiny_mt.h
|
2020-12-27 01:58:16 -08:00
|
|
|
tree.h
|
2019-02-15 15:26:41 -08:00
|
|
|
uint128.h
|
2021-03-31 21:03:25 -07:00
|
|
|
unique_function.h
|
2018-12-18 06:07:25 -08:00
|
|
|
uuid.cpp
|
|
|
|
uuid.h
|
2018-01-17 16:37:34 -08:00
|
|
|
vector_math.h
|
2020-04-08 14:35:07 -07:00
|
|
|
virtual_buffer.cpp
|
|
|
|
virtual_buffer.h
|
2020-02-09 12:53:22 -08:00
|
|
|
wall_clock.cpp
|
|
|
|
wall_clock.h
|
2019-02-08 14:11:00 -08:00
|
|
|
zstd_compression.cpp
|
|
|
|
zstd_compression.h
|
2018-01-17 16:37:34 -08:00
|
|
|
)
|
2014-08-23 18:22:05 -07:00
|
|
|
|
2015-08-14 19:29:08 -07:00
|
|
|
if(ARCHITECTURE_x86_64)
|
2018-01-17 16:37:34 -08:00
|
|
|
target_sources(common
|
|
|
|
PRIVATE
|
2015-08-11 21:19:20 -07:00
|
|
|
x64/cpu_detect.cpp
|
|
|
|
x64/cpu_detect.h
|
2020-02-09 12:53:22 -08:00
|
|
|
x64/native_clock.cpp
|
|
|
|
x64/native_clock.h
|
2020-05-29 17:55:27 -07:00
|
|
|
x64/xbyak_abi.h
|
|
|
|
x64/xbyak_util.h
|
2018-01-17 16:37:34 -08:00
|
|
|
)
|
2015-07-21 16:49:33 -07:00
|
|
|
endif()
|
|
|
|
|
2020-10-30 12:02:02 -07:00
|
|
|
if (MSVC)
|
|
|
|
target_compile_definitions(common PRIVATE
|
|
|
|
# The standard library doesn't provide any replacement for codecvt yet
|
|
|
|
# so we can disable this deprecation warning for the time being.
|
|
|
|
_SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING
|
|
|
|
)
|
|
|
|
target_compile_options(common PRIVATE
|
|
|
|
/W4
|
|
|
|
/WX
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_options(common PRIVATE
|
|
|
|
-Werror
|
2021-02-09 18:28:33 -08:00
|
|
|
|
|
|
|
$<$<CXX_COMPILER_ID:Clang>:-fsized-deallocation>
|
2020-10-30 12:02:02 -07:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2018-01-17 16:37:34 -08:00
|
|
|
create_target_directory_groups(common)
|
2014-04-28 19:40:39 -07:00
|
|
|
|
2021-07-22 23:43:50 -07:00
|
|
|
target_link_libraries(common PUBLIC ${Boost_LIBRARIES} fmt::fmt microprofile Threads::Threads)
|
2020-09-28 18:11:39 -07:00
|
|
|
target_link_libraries(common PRIVATE lz4::lz4 xbyak)
|
|
|
|
if (MSVC)
|
|
|
|
target_link_libraries(common PRIVATE zstd::zstd)
|
|
|
|
else()
|
|
|
|
target_link_libraries(common PRIVATE zstd)
|
|
|
|
endif()
|