mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2025-06-10 06:20:42 +02:00
14 lines
240 B
CMake
14 lines
240 B
CMake
|
|
set(EXAMPLE_LIST "json_example;logger_example;numpy_example")
|
|
foreach(example ${EXAMPLE_LIST})
|
|
add_executable(${example} ${example}.cpp)
|
|
target_link_libraries(${example} PUBLIC aare PRIVATE aare_compiler_flags)
|
|
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
|
|
|