Files
DRAMSys/tests/tests_configuration/CMakeLists.txt
2025-05-09 16:45:54 +02:00

22 lines
540 B
CMake

###############################################
### tests_configuration ###
###############################################
add_executable(tests_configuration
test_configuration.cpp
test_json.cpp
)
set_target_properties(tests_configuration PROPERTIES FOLDER tests/configuration)
target_link_libraries(tests_configuration PRIVATE
DRAMSys::config
DRAMUtils::DRAMUtils
GTest::gtest
GTest::gtest_main
)
gtest_discover_tests(tests_configuration
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
)