23 lines
318 B
Plaintext
23 lines
318 B
Plaintext
|
# 1 june 2016
|
||
|
|
||
|
include_directories(..)
|
||
|
|
||
|
_add_exec(controlgallery
|
||
|
controlgallery/main.c
|
||
|
)
|
||
|
|
||
|
_add_exec(histogram
|
||
|
histogram/main.c
|
||
|
)
|
||
|
|
||
|
_add_exec(cpp-multithread
|
||
|
cpp-multithread/main.cpp
|
||
|
)
|
||
|
target_link_libraries(cpp-multithread pthread)
|
||
|
|
||
|
add_custom_target(examples
|
||
|
DEPENDS
|
||
|
controlgallery
|
||
|
histogram
|
||
|
cpp-multithread)
|