2022-01-23 20:57:28 +01:00
|
|
|
cmake_minimum_required(VERSION 3.10)
|
|
|
|
project(pgnp)
|
|
|
|
|
|
|
|
# Shared library
|
2023-05-02 19:38:40 +02:00
|
|
|
add_library(pgnp STATIC src/PGN.cpp src/HalfMove.cpp src/LargeFileStream.cpp)
|
2022-01-23 20:57:28 +01:00
|
|
|
|
|
|
|
# Includes
|
|
|
|
set(PGNP_INCLUDE_DIR ${CMAKE_CURRENT_BINARY_DIR}/includes) # For conveniance
|
|
|
|
set(PGNP_INCLUDE_DIR ${PGNP_INCLUDE_DIR} PARENT_SCOPE) # To be used by other projects with add_subdirectory()
|
|
|
|
file(MAKE_DIRECTORY ${PGNP_INCLUDE_DIR})
|
2022-01-25 10:53:10 +01:00
|
|
|
configure_file(src/PGN.hpp ${PGNP_INCLUDE_DIR}/pgnp.hpp COPYONLY)
|
|
|
|
configure_file(src/HalfMove.hpp ${PGNP_INCLUDE_DIR} COPYONLY)
|
2022-01-26 12:03:24 +01:00
|
|
|
configure_file(src/LargeFileStream.hpp ${PGNP_INCLUDE_DIR} COPYONLY)
|
2022-01-26 20:50:24 +01:00
|
|
|
configure_file(src/Types.hpp ${PGNP_INCLUDE_DIR} COPYONLY)
|
2022-01-24 15:29:22 +01:00
|
|
|
include_directories(${PGNP_INCLUDE_DIR})
|
2022-01-23 20:57:28 +01:00
|
|
|
|
2023-01-19 15:51:12 +01:00
|
|
|
# ChessMoveInterface
|
|
|
|
add_subdirectory(libs/chess-move-interface)
|
2023-02-11 10:24:46 +02:00
|
|
|
target_link_libraries(pgnp PUBLIC ChessMoveInterface)
|
2023-02-10 01:47:35 +02:00
|
|
|
|
|
|
|
# Add include directiries to target to be independent of ${PGNP_INCLUDE_DIR} and ${CMI_INCLUDE_DIR}
|
|
|
|
target_include_directories(pgnp PUBLIC ${CMI_INCLUDE_DIR})
|
|
|
|
target_include_directories(pgnp PUBLIC ${PGNP_INCLUDE_DIR})
|
2023-01-19 15:51:12 +01:00
|
|
|
|
2022-01-23 20:57:28 +01:00
|
|
|
# Unit tests
|
2023-01-19 15:51:12 +01:00
|
|
|
set(COMPILE_TESTS OFF CACHE BOOL "Should unit tests be compiled")
|
|
|
|
if(COMPILE_TESTS)
|
|
|
|
enable_testing()
|
|
|
|
add_subdirectory(./tests)
|
|
|
|
endif()
|
|
|
|
|