21 lines
501 B
CMake
21 lines
501 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
|
|
gtest
|
|
gtest_main
|
|
)
|
|
|
|
gtest_discover_tests(tests_configuration
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|