Add tests and improve interface

This commit is contained in:
Loic Guegan 2023-01-19 10:09:07 +01:00
parent 8fd85102ab
commit f3e3ab4911
8 changed files with 21718 additions and 18 deletions

View file

@ -19,4 +19,8 @@ include_directories(src)
file(GLOB_RECURSE SRC_CPP_FILES src/*.cpp)
if(NOT TARGET ChessMoveInterface)
add_library(ChessMoveInterface SHARED ${SRC_CPP_FILES})
endif()
endif()
# Unit tests
enable_testing()
add_subdirectory(./tests)