diff options
Diffstat (limited to 'src/threads')
-rw-r--r-- | src/threads/CMakeLists.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/threads/CMakeLists.txt b/src/threads/CMakeLists.txt new file mode 100644 index 0000000..2fc7de9 --- /dev/null +++ b/src/threads/CMakeLists.txt @@ -0,0 +1,9 @@ +project(libtwinkle-threads) + +set(LIBTWINKLE_THREADS-SRCS + thread.cpp + mutex.cpp + sema.cpp +) + +add_library(libtwinkle-threads OBJECT ${LIBTWINKLE_THREADS-SRCS}) |