2451177ccd
after that next commits will be in branch dev or stable
9 lines
311 B
CMake
9 lines
311 B
CMake
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/../superviseur-pthread/bin)
|
|
|
|
set(superviseur_pthread_FILES ./src/Program.cpp src/Tasks.cpp)
|
|
|
|
include_directories(./src ../lib)
|
|
|
|
add_executable(superviseur-pthread ${superviseur_pthread_FILES})
|
|
target_link_libraries(superviseur-pthread destijl pthread rt)
|
|
|