mirror of
https://gitlab.com/manzerbredes/chess-move-interface.git
synced 2025-04-06 10:06: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
|
# Add target if not exists
|
||||||
# This way ChessMoveInterface can be used in multiple submodules
|
# This way ChessMoveInterface can be used in multiple submodules
|
||||||
include_directories(src)
|
|
||||||
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 SHARED ${SRC_CPP_FILES})
|
add_library(ChessMoveInterface STATIC ${SRC_CPP_FILES})
|
||||||
|
target_include_directories(ChessMoveInterface PUBLIC src)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Unit tests
|
# Unit tests
|
||||||
|
|
Loading…
Add table
Reference in a new issue