Files
windows-user-space-emulator/src/common/CMakeLists.txt
2025-01-15 20:42:02 +01:00

18 lines
377 B
CMake

file(GLOB_RECURSE SRC_FILES CONFIGURE_DEPENDS
*.cpp
*.hpp
)
add_library(emulator-common ${SRC_FILES})
momo_assign_source_group(${SRC_FILES})
target_include_directories(emulator-common INTERFACE "${CMAKE_CURRENT_LIST_DIR}")
set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(Threads REQUIRED)
target_link_libraries(emulator-common PUBLIC
Threads::Threads
zlibstatic
)