mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2025-06-12 23:37:13 +02:00
add logger class (#29)
* add logger class * add LOCATION macro for logger * added printing in files
This commit is contained in:
@ -1,12 +1,13 @@
|
||||
add_executable(json_example json_file_read.cpp)
|
||||
add_executable(numpy_example numpy_file_read.cpp)
|
||||
|
||||
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()
|
||||
|
||||
|
||||
target_link_libraries(json_example PRIVATE aare_compiler_flags)
|
||||
target_link_libraries(numpy_example PRIVATE aare_compiler_flags)
|
||||
|
||||
target_link_libraries(json_example PUBLIC aare)
|
||||
target_link_libraries(numpy_example PUBLIC aare)
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user