diff options
author | crupest <crupest@outlook.com> | 2021-06-10 11:43:23 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-06-10 11:43:23 +0800 |
commit | 500ee4751c4861c4217c067f5d0dcae0cbd55d7c (patch) | |
tree | cd926a06928d977eebeb359798f96a683576bc51 /operating-system-experiment/CMakeLists.txt | |
parent | df97d69a45ba4e50114458e2b5c4185460f2d9f3 (diff) | |
download | life-500ee4751c4861c4217c067f5d0dcae0cbd55d7c.tar.gz life-500ee4751c4861c4217c067f5d0dcae0cbd55d7c.tar.bz2 life-500ee4751c4861c4217c067f5d0dcae0cbd55d7c.zip |
...
Diffstat (limited to 'operating-system-experiment/CMakeLists.txt')
-rw-r--r-- | operating-system-experiment/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/operating-system-experiment/CMakeLists.txt b/operating-system-experiment/CMakeLists.txt index 139d2ba..bd50319 100644 --- a/operating-system-experiment/CMakeLists.txt +++ b/operating-system-experiment/CMakeLists.txt @@ -9,7 +9,7 @@ set(CMAKE_CXX_STANDARD 17) find_package(fmt CONFIG REQUIRED)
find_package(Microsoft.GSL CONFIG REQUIRED)
-add_library(cru_system SHARED Thread.cpp Mutex.cpp)
+add_library(cru_system SHARED Thread.cpp Mutex.cpp Interlocked.cpp)
target_link_libraries(cru_system PUBLIC Microsoft.GSL::GSL fmt::fmt)
target_compile_definitions(cru_system PUBLIC CRU_EXPORT_API)
if(UNIX)
|