Change object type

This commit is contained in:
Loïc Guégan 2025-03-18 14:05:18 +01:00
parent 14ac3bba33
commit f0c44e3033

View file

@ -17,13 +17,13 @@ endforeach(FILE ${HEADER_FILES})
# This way ChessMoveInterface can be used in multiple submodules
file(GLOB_RECURSE SRC_CPP_FILES src/*.cpp)
if(NOT TARGET ChessMoveInterface)
add_library(ChessMoveInterface STATIC ${SRC_CPP_FILES})
target_include_directories(ChessMoveInterface PUBLIC ${CMI_INCLUDE_DIR})
add_library(ChessMoveInterface OBJECT ${SRC_CPP_FILES})
target_include_directories(ChessMoveInterface PUBLIC ${CMI_INCLUDE_DIR})
endif()
# Unit tests
set(COMPILE_TESTS OFF CACHE BOOL "Should unit tests be compiled")
if(COMPILE_TESTS)
enable_testing()
add_subdirectory(./tests)
endif()
enable_testing()
add_subdirectory(./tests)
endif()