Files
tactility/Tests/crypt-module/CMakeLists.txt
Crazypedia cca7224252 fix(tests): repair stale TestFile.h includes and stop hardcoding g++ in test CMakeLists (#551)
PR #550 moved TestFile.h from Tests/TactilityCore to Tests/Tactility, but
AppManifestParsingTest.cpp and PropertiesFileTest.cpp still include the old
path, so the test build fails on main.
2026-07-05 22:05:54 +02:00

17 lines
420 B
CMake

project(CryptModuleTests)
enable_language(C CXX ASM)
file(GLOB_RECURSE TEST_SOURCES ${PROJECT_SOURCE_DIR}/Source/*.cpp)
add_executable(CryptModuleTests EXCLUDE_FROM_ALL ${TEST_SOURCES})
target_include_directories(CryptModuleTests PRIVATE ${DOCTESTINC})
add_test(NAME CryptModuleTests COMMAND CryptModuleTests)
target_link_libraries(CryptModuleTests PUBLIC
crypt-module
TactilityKernel
freertos_kernel
)