[cpp] Add example of using condition_variables
This commit is contained in:
26
cpp/multithreading/conditions/CMakeLists.txt
Normal file
26
cpp/multithreading/conditions/CMakeLists.txt
Normal file
@@ -0,0 +1,26 @@
|
||||
################################################################################
|
||||
## Author: Shaun Reed ##
|
||||
## Legal: All Content (c) 2022 Shaun Reed, all rights reserved ##
|
||||
## About: An example of condition_variables in multithreaded C++ ##
|
||||
## ##
|
||||
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com | GitHub: shaunrd0 ##
|
||||
################################################################################
|
||||
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
|
||||
# std::scoped_lock requires C++17
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
add_compile_options("-Wall")
|
||||
|
||||
project(
|
||||
#[[NAME]] ConditionVariables
|
||||
VERSION 1.0
|
||||
DESCRIPTION "Example of condition_variables in multithreaded C++"
|
||||
LANGUAGES CXX
|
||||
)
|
||||
|
||||
add_executable(
|
||||
multithread-conditions driver.cpp
|
||||
)
|
||||
|
||||
target_link_libraries(multithread-conditions pthread)
|
||||
Reference in New Issue
Block a user