Files
Tart/testing/CMakeLists.txt
2025-01-25 08:29:43 -08:00

9 lines
205 B
CMake

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")