add logger class (#29)

* add logger class

* add LOCATION macro for logger

* added printing in files
This commit is contained in:
Bechir Braham
2024-03-26 17:40:19 +01:00
committed by GitHub
parent 7e913b3385
commit e280742a6c
9 changed files with 195 additions and 8 deletions

View File

@ -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)