mirror of
https://gitlab.com/manzerbredes/chess-move-interface.git
synced 2025-04-05 17:46:30 +02:00
Change object type
This commit is contained in:
parent
14ac3bba33
commit
f0c44e3033
1 changed files with 5 additions and 5 deletions
|
@ -17,13 +17,13 @@ endforeach(FILE ${HEADER_FILES})
|
||||||
# This way ChessMoveInterface can be used in multiple submodules
|
# This way ChessMoveInterface can be used in multiple submodules
|
||||||
file(GLOB_RECURSE SRC_CPP_FILES src/*.cpp)
|
file(GLOB_RECURSE SRC_CPP_FILES src/*.cpp)
|
||||||
if(NOT TARGET ChessMoveInterface)
|
if(NOT TARGET ChessMoveInterface)
|
||||||
add_library(ChessMoveInterface STATIC ${SRC_CPP_FILES})
|
add_library(ChessMoveInterface OBJECT ${SRC_CPP_FILES})
|
||||||
target_include_directories(ChessMoveInterface PUBLIC ${CMI_INCLUDE_DIR})
|
target_include_directories(ChessMoveInterface PUBLIC ${CMI_INCLUDE_DIR})
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Unit tests
|
# Unit tests
|
||||||
set(COMPILE_TESTS OFF CACHE BOOL "Should unit tests be compiled")
|
set(COMPILE_TESTS OFF CACHE BOOL "Should unit tests be compiled")
|
||||||
if(COMPILE_TESTS)
|
if(COMPILE_TESTS)
|
||||||
enable_testing()
|
enable_testing()
|
||||||
add_subdirectory(./tests)
|
add_subdirectory(./tests)
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Add table
Reference in a new issue