mirror of
https://gitlab.com/manzerbredes/chess-move-interface.git
synced 2025-04-05 17:46:30 +02:00
Switch library to static and improve CMake integration
This commit is contained in:
parent
7125292878
commit
0e154098a5
1 changed files with 2 additions and 2 deletions
|
@ -15,10 +15,10 @@ endforeach(FILE ${HEADER_FILES})
|
|||
|
||||
# Add target if not exists
|
||||
# This way ChessMoveInterface can be used in multiple submodules
|
||||
include_directories(src)
|
||||
file(GLOB_RECURSE SRC_CPP_FILES src/*.cpp)
|
||||
if(NOT TARGET ChessMoveInterface)
|
||||
add_library(ChessMoveInterface SHARED ${SRC_CPP_FILES})
|
||||
add_library(ChessMoveInterface STATIC ${SRC_CPP_FILES})
|
||||
target_include_directories(ChessMoveInterface PUBLIC src)
|
||||
endif()
|
||||
|
||||
# Unit tests
|
||||
|
|
Loading…
Add table
Reference in a new issue