13 lines
333 B
CMake
13 lines
333 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
cmake_policy(SET CMP0020 NEW)
|
|
|
|
find_package(PIP REQUIRED)
|
|
|
|
add_executable(mutex mutex.cpp)
|
|
target_link_libraries(mutex PIP)
|
|
|
|
add_executable(mutex_multithread mutex_multithread.cpp)
|
|
target_link_libraries(mutex_multithread PIP)
|
|
|
|
add_executable(vectors vectors.cpp)
|
|
target_link_libraries(vectors PIP) |