16 lines
395 B
CMake
16 lines
395 B
CMake
include(GoogleTest)
|
|
|
|
set(DRAMSYS_TEST_RESOURCES_DIR "${CMAKE_CURRENT_SOURCE_DIR}/resources")
|
|
|
|
FetchContent_Declare(
|
|
googletest
|
|
GIT_REPOSITORY https://github.com/google/googletest
|
|
GIT_TAG release-1.12.1)
|
|
|
|
FetchContent_MakeAvailable(googletest)
|
|
|
|
add_subdirectory(tests_configuration)
|
|
add_subdirectory(tests_dramsys)
|
|
add_subdirectory(tests_regression)
|
|
add_subdirectory(tests_simulator)
|