Files
Tart/testing/CMakeLists.txt

9 lines
205 B
CMake
Raw Normal View History

2025-01-25 08:29:43 -08:00
project(TartTest)
set( SOURCES
main.cpp
)
add_executable(${PROJECT_NAME} ${SOURCES})
target_include_directory(${PROJECT_NAME} Pickler)
add_test(${PROJECT_NAME} "${CMAKE_SOURCE_DIR}/bin/testing.exe")