blob: 2aa0f554279dd58750d3a26778c5a7fea7b34290 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Targets
# =======
add_custom_target(examples
COMMENT "Build all examples.")
add_dependencies(check examples)
file(GLOB_RECURSE immer_examples "*.cpp")
foreach(_file IN LISTS immer_examples)
immer_target_name_for(_target _output "${_file}")
add_executable(${_target} EXCLUDE_FROM_ALL "${_file}")
add_dependencies(examples ${_target})
set_target_properties(${_target} PROPERTIES OUTPUT_NAME ${_output})
target_link_libraries(${_target} PUBLIC immer-dev)
add_test("example/${_output}" ${_output})
endforeach()
|