Files
yuzu/src/common/CMakeLists.txt

264 lines
6.1 KiB
CMake
Raw Normal View History

2022-11-05 13:58:44 +01:00
# SPDX-FileCopyrightText: 2018 yuzu Emulator Project
# SPDX-License-Identifier: GPL-2.0-or-later
if (DEFINED ENV{AZURECIREPO})
set(BUILD_REPOSITORY $ENV{AZURECIREPO})
endif()
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 ()
include(GenerateSCMRev)
add_library(common STATIC
address_space.cpp
address_space.h
algorithm.h
alignment.h
announce_multiplayer_room.h
assert.cpp
assert.h
atomic_helpers.h
atomic_ops.h
bit_cast.h
bit_field.h
bit_set.h
bit_util.h
2023-09-14 17:14:36 +02:00
bounded_threadsafe_queue.h
2022-11-05 13:58:44 +01:00
cityhash.cpp
cityhash.h
common_funcs.h
2022-12-01 02:28:19 +01:00
common_precompiled_headers.h
2022-11-05 13:58:44 +01:00
common_types.h
concepts.h
2023-03-26 11:16:08 +02:00
container_hash.h
2023-01-22 20:58:50 +01:00
demangle.cpp
demangle.h
2023-09-14 17:14:36 +02:00
detached_tasks.cpp
detached_tasks.h
2022-11-05 13:58:44 +01:00
div_ceil.h
dynamic_library.cpp
dynamic_library.h
elf.h
error.cpp
error.h
expected.h
fiber.cpp
fiber.h
fixed_point.h
2023-11-29 20:41:00 +01:00
free_region_manager.h
2022-11-05 13:58:44 +01: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
hash.h
2023-12-26 19:43:46 +01:00
heap_tracker.cpp
heap_tracker.h
2022-11-05 13:58:44 +01:00
hex_util.cpp
hex_util.h
host_memory.cpp
host_memory.h
input.h
intrusive_red_black_tree.h
literals.h
logging/backend.cpp
logging/backend.h
logging/filter.cpp
logging/filter.h
logging/formatter.h
logging/log.h
logging/log_entry.h
logging/text_formatter.cpp
logging/text_formatter.h
logging/types.h
lz4_compression.cpp
lz4_compression.h
2022-12-23 02:13:19 +01:00
make_unique_for_overwrite.h
2022-11-05 13:58:44 +01:00
math_util.h
memory_detect.cpp
memory_detect.h
microprofile.cpp
microprofile.h
microprofileui.h
multi_level_page_table.cpp
multi_level_page_table.h
nvidia_flags.cpp
nvidia_flags.h
2023-03-08 06:16:07 +01:00
overflow.h
2022-11-05 13:58:44 +01:00
page_table.cpp
page_table.h
param_package.cpp
param_package.h
parent_of_member.h
point.h
2022-11-30 06:29:32 +01:00
precompiled_headers.h
2022-11-05 13:58:44 +01:00
quaternion.h
2022-12-25 07:12:57 +01:00
range_map.h
2024-01-22 23:12:09 +01:00
range_mutex.h
2024-02-05 15:05:53 +01:00
range_sets.h
range_sets.inc
2022-11-05 13:58:44 +01:00
reader_writer_queue.h
ring_buffer.h
${CMAKE_CURRENT_BINARY_DIR}/scm_rev.cpp
scm_rev.h
scope_exit.h
2022-12-23 02:13:19 +01:00
scratch_buffer.h
2022-11-05 13:58:44 +01:00
settings.cpp
settings.h
2023-07-22 02:54:19 +02:00
settings_common.cpp
settings_common.h
settings_enums.h
2022-11-05 13:58:44 +01:00
settings_input.cpp
settings_input.h
2023-07-22 02:54:19 +02:00
settings_setting.h
2024-02-05 15:05:53 +01:00
slot_vector.h
2022-11-05 13:58:44 +01:00
socket_types.h
spin_lock.cpp
spin_lock.h
2023-10-26 01:19:00 +02:00
stb.cpp
stb.h
2023-03-04 09:58:45 +01:00
steady_clock.cpp
steady_clock.h
2022-11-05 13:58:44 +01:00
stream.cpp
stream.h
string_util.cpp
string_util.h
swap.h
telemetry.cpp
telemetry.h
thread.cpp
thread.h
thread_queue_list.h
thread_worker.h
threadsafe_queue.h
time_zone.cpp
time_zone.h
tiny_mt.h
tree.h
2023-03-22 03:17:40 +01:00
typed_address.h
2022-11-05 13:58:44 +01:00
uint128.h
unique_function.h
uuid.cpp
uuid.h
vector_math.h
virtual_buffer.cpp
virtual_buffer.h
wall_clock.cpp
wall_clock.h
zstd_compression.cpp
zstd_compression.h
)
2023-09-12 17:20:32 +02:00
if (YUZU_ENABLE_PORTABLE)
add_compile_definitions(YUZU_ENABLE_PORTABLE)
endif()
2023-03-04 09:58:45 +01:00
if (WIN32)
target_sources(common PRIVATE
windows/timer_resolution.cpp
windows/timer_resolution.h
)
target_link_libraries(common PRIVATE ntdll)
endif()
2023-11-29 20:41:00 +01:00
if (NOT WIN32)
target_sources(common PRIVATE
signal_chain.cpp
signal_chain.h
)
endif()
2023-05-31 22:58:29 +02:00
if(ANDROID)
target_sources(common
PRIVATE
fs/fs_android.cpp
fs/fs_android.h
)
endif()
2023-11-30 17:36:34 +01:00
if (UNIX AND NOT APPLE)
2023-11-29 20:41:00 +01:00
target_sources(common PRIVATE
linux/gamemode.cpp
linux/gamemode.h
)
2023-12-01 01:15:16 +01:00
target_link_libraries(common PRIVATE gamemode::headers)
2023-11-29 20:41:00 +01:00
endif()
2022-11-05 13:58:44 +01:00
if(ARCHITECTURE_x86_64)
target_sources(common
PRIVATE
x64/cpu_detect.cpp
x64/cpu_detect.h
2023-03-24 06:52:47 +01:00
x64/cpu_wait.cpp
x64/cpu_wait.h
2022-11-05 13:58:44 +01:00
x64/native_clock.cpp
x64/native_clock.h
2023-04-23 14:05:41 +02:00
x64/rdtsc.cpp
x64/rdtsc.h
2022-11-05 13:58:44 +01:00
x64/xbyak_abi.h
x64/xbyak_util.h
)
2022-12-04 20:53:13 +01:00
target_link_libraries(common PRIVATE xbyak::xbyak)
2022-11-05 13:58:44 +01:00
endif()
2023-11-29 20:41:00 +01:00
if (HAS_NCE)
2023-10-10 16:48:32 +02:00
target_sources(common
PRIVATE
arm64/native_clock.cpp
arm64/native_clock.h
)
endif()
2022-11-05 13:58:44 +01: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
/we4242 # 'identifier': conversion from 'type1' to 'type2', possible loss of data
/we4254 # 'operator': conversion from 'type1:field_bits' to 'type2:field_bits', possible loss of data
/we4800 # Implicit conversion from 'type' to bool. Possible information loss
)
2023-10-26 01:19:00 +02:00
else()
set_source_files_properties(stb.cpp PROPERTIES COMPILE_OPTIONS "-Wno-implicit-fallthrough;-Wno-missing-declarations;-Wno-missing-field-initializers")
2023-07-22 02:54:19 +02:00
endif()
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
2022-11-05 13:58:44 +01:00
target_compile_options(common PRIVATE
2023-07-22 02:54:19 +02:00
-fsized-deallocation
-Werror=unreachable-code-aggressive
)
target_compile_definitions(common PRIVATE
# Clang 14 and earlier have errors when explicitly instantiating Settings::Setting
$<$<VERSION_LESS:$<CXX_COMPILER_VERSION>,15>:CANNOT_EXPLICITLY_INSTANTIATE>
2022-11-05 13:58:44 +01:00
)
endif()
2023-10-26 01:19:00 +02:00
target_link_libraries(common PUBLIC Boost::context Boost::headers fmt::fmt microprofile stb::headers Threads::Threads)
2023-01-24 21:43:09 +01:00
target_link_libraries(common PRIVATE lz4::lz4 zstd::zstd LLVM::Demangle)
2022-11-30 06:29:32 +01:00
2023-05-31 22:58:29 +02:00
if (ANDROID)
# For ASharedMemory_create
target_link_libraries(common PRIVATE android)
endif()
2022-11-30 06:29:32 +01:00
if (YUZU_USE_PRECOMPILED_HEADERS)
target_precompile_headers(common PRIVATE precompiled_headers.h)
endif()
2024-01-28 20:16:36 +01:00
create_target_directory_groups(common)