diff options
author | crupest <crupest@outlook.com> | 2021-06-11 11:24:08 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-06-11 11:24:08 +0800 |
commit | 09b9435d38fa845e2feca8e7c5530674d253bb30 (patch) | |
tree | 2c7e9d56464403de3eb65c508885861aef9a5b51 /operating-system-experiment/CMakeLists.txt | |
parent | 49da23fa1637e8fd2f94dd83e612082baeb140f1 (diff) | |
download | life-09b9435d38fa845e2feca8e7c5530674d253bb30.tar.gz life-09b9435d38fa845e2feca8e7c5530674d253bb30.tar.bz2 life-09b9435d38fa845e2feca8e7c5530674d253bb30.zip |
...
Diffstat (limited to 'operating-system-experiment/CMakeLists.txt')
-rw-r--r-- | operating-system-experiment/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/operating-system-experiment/CMakeLists.txt b/operating-system-experiment/CMakeLists.txt index c8afc24..5671b4a 100644 --- a/operating-system-experiment/CMakeLists.txt +++ b/operating-system-experiment/CMakeLists.txt @@ -31,3 +31,5 @@ target_link_libraries(interlocked_avoid_data_race_demo PRIVATE cru_system) add_executable(semaphore_avoid_data_race_demo SemaphoreAvoidDataRaceDemo.cpp)
target_link_libraries(semaphore_avoid_data_race_demo PRIVATE cru_system)
+add_executable(parallel_calculation_demo ParallelCalculationDemo.cpp)
+target_link_libraries(parallel_calculation_demo PRIVATE cru_system)
|