14 lines
319 B
CMake
14 lines
319 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/highlevel_impl.cppm
|
|
src/platform/windows.cppm
|
|
)
|
|
|
|
target_link_libraries(threads PRIVATE exceptions Synchronization) |