mirror of
https://gitlab.com/manzerbredes/pgnp.git
synced 2025-04-06 10:06:25 +02:00
8 lines
233 B
CMake
8 lines
233 B
CMake
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)
|