mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2025-06-11 06:47:14 +02:00

* reading moench and raw files * read mythen3 files * read multiport mythen3 * delete .vscode and .env.dev --------- Co-authored-by: Bechir <bechir.brahem420@gmail.com>
14 lines
285 B
CMake
14 lines
285 B
CMake
|
|
set(EXAMPLE_LIST "json_example;logger_example;numpy_example;multiport_example;raw_example;mythen_example")
|
|
foreach(example ${EXAMPLE_LIST})
|
|
add_executable(${example} ${example}.cpp)
|
|
target_link_libraries(${example} PUBLIC aare PRIVATE aare_compiler_flags)
|
|
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
|
|
|