This repository has been archived on 2025-12-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
SystemC-Components-Test/tests/memory_subsys/CMakeLists.txt
T

10 lines
257 B
CMake
Raw Normal View History

2025-08-29 07:39:28 +02:00
project (memory_subsys)
add_executable(${PROJECT_NAME}
memory_test.cpp
${test_util_SOURCE_DIR}/sc_main.cpp
)
target_link_libraries (${PROJECT_NAME} PUBLIC scc::components test_util)
2025-11-09 20:19:54 +01:00
if(NOT THREAD_SANITIZER)
catch_discover_tests(${PROJECT_NAME})
endif()