networks-1.cpp/modules/threads/CMakeLists.txt

13 lines
278 B
CMake

add_library(threads STATIC)
target_sources(
threads
PUBLIC
FILE_SET cxx_modules TYPE CXX_MODULES FILES
src/common.cppm
src/thread_routine.cppm
src/windows.cppm
)
target_link_libraries(threads PRIVATE exceptions Synchronization)