mirror of
https://gitlab.com/manzerbredes/pgnp.git
synced 2025-04-05 17:46:25 +02:00
Update CMakeLists to avoid target clash name on other projects
This commit is contained in:
parent
0258e7d4f8
commit
43434b170c
1 changed files with 5 additions and 5 deletions
|
@ -4,17 +4,17 @@ file(COPY pgn_files DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/)
|
|||
|
||||
# Configure catch3
|
||||
include_directories(./catch3/)
|
||||
add_library(catch3 SHARED ./catch3/catch_amalgamated.cpp)
|
||||
add_library(pgnp_catch3 SHARED ./catch3/catch_amalgamated.cpp)
|
||||
|
||||
# Add tests
|
||||
add_executable(pgnp_valid valid.cpp)
|
||||
target_link_libraries(pgnp_valid pgnp catch3)
|
||||
target_link_libraries(pgnp_valid pgnp pgnp_catch3)
|
||||
add_test(PGNP_Valid_PGN_Set pgnp_valid)
|
||||
|
||||
add_executable(pgnp_str str.cpp)
|
||||
target_link_libraries(pgnp_str pgnp catch3)
|
||||
target_link_libraries(pgnp_str pgnp pgnp_catch3)
|
||||
add_test(PGNP_STR_Compliant_Set pgnp_str)
|
||||
|
||||
add_executable(pgnp_combined combined.cpp)
|
||||
target_link_libraries(pgnp_combined pgnp catch3)
|
||||
add_test(PGNP_Combined_Set pgnp_combined)
|
||||
target_link_libraries(pgnp_combined pgnp pgnp_catch3)
|
||||
add_test(PGNP_Combined_Set pgnp_combined)
|
||||
|
|
Loading…
Add table
Reference in a new issue