Added the examples CMakeLists.txt.
This commit is contained in:
parent
08c06f24c0
commit
81c555ea3b
|
@ -153,3 +153,5 @@ add_subdirectory("test")
|
|||
set_target_properties(tester PROPERTIES
|
||||
OUTPUT_NAME test
|
||||
WIN32_EXECUTABLE FALSE)
|
||||
|
||||
add_subdirectory("examples")
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
# 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
|
||||
)
|
||||
|
||||
add_custom_target(examples
|
||||
DEPENDS
|
||||
controlgallery
|
||||
histogram
|
||||
cpp-multithread)
|
Loading…
Reference in New Issue