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.
This commit is contained in:
Crazypedia
2026-07-05 16:05:54 -04:00
committed by GitHub
parent 66a4eb66d6
commit cca7224252
6 changed files with 2 additions and 7 deletions
-2
View File
@@ -2,8 +2,6 @@ project(CryptModuleTests)
enable_language(C CXX ASM)
set(CMAKE_CXX_COMPILER g++)
file(GLOB_RECURSE TEST_SOURCES ${PROJECT_SOURCE_DIR}/Source/*.cpp)
add_executable(CryptModuleTests EXCLUDE_FROM_ALL ${TEST_SOURCES})