diff options
| author | untodesu <kirill@untode.su> | 2025-09-11 13:51:50 +0500 |
|---|---|---|
| committer | untodesu <kirill@untode.su> | 2025-09-11 13:51:50 +0500 |
| commit | f0cc06c7388acb32b86301965c5b2547e4e3b919 (patch) | |
| tree | d6fc939b1b660562a8abdedb3330ae66defc1bcb /game/shared/CMakeLists.txt | |
| parent | aaed751bf4430bf4b9b30cef532b8753b9f639ce (diff) | |
| download | voxelius-f0cc06c7388acb32b86301965c5b2547e4e3b919.tar.bz2 voxelius-f0cc06c7388acb32b86301965c5b2547e4e3b919.zip | |
Displace threading into core (qfortress graft)
Diffstat (limited to 'game/shared/CMakeLists.txt')
| -rw-r--r-- | game/shared/CMakeLists.txt | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/game/shared/CMakeLists.txt b/game/shared/CMakeLists.txt index 8a6fb57..d4cb6d8 100644 --- a/game/shared/CMakeLists.txt +++ b/game/shared/CMakeLists.txt @@ -14,14 +14,12 @@ add_library(shared STATIC "${CMAKE_CURRENT_LIST_DIR}/protocol.hh" "${CMAKE_CURRENT_LIST_DIR}/splash.cc" "${CMAKE_CURRENT_LIST_DIR}/splash.hh" - "${CMAKE_CURRENT_LIST_DIR}/threading.cc" - "${CMAKE_CURRENT_LIST_DIR}/threading.hh" "${CMAKE_CURRENT_LIST_DIR}/types.hh") target_compile_features(shared PUBLIC cxx_std_20) target_include_directories(shared PRIVATE "${PROJECT_SOURCE_DIR}") target_include_directories(shared PRIVATE "${PROJECT_SOURCE_DIR}/game") target_precompile_headers(shared PRIVATE "${CMAKE_CURRENT_LIST_DIR}/pch.hh") -target_link_libraries(shared PUBLIC core enet entt FNL miniz parson thread_pool) +target_link_libraries(shared PUBLIC core enet entt FNL miniz parson) add_subdirectory(entity) add_subdirectory(world) |
