blob: 4b556aaf9d1d29f537105c8c4ecef99af51aaaa5 (
plain)
1
2
3
4
5
6
7
8
|
include_directories(./catch3/)
# Copy asset files
file(COPY pgn_files DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/)
# Run tests
add_executable(pgnp_tests tests.cpp ./catch3/catch_amalgamated.cpp)
target_link_libraries(pgnp_tests pgnp)
|