forked from Mirrorlandia_minetest/minetest
Declare all bundled libs as static
Otherwise it can happen that these are built as shared depending on the options passed to CMake, which obviously isn't intended.
This commit is contained in:
parent
b405985b80
commit
e81c48526b
@ -1,4 +1,4 @@
|
||||
add_library(bitop bit.c)
|
||||
add_library(bitop STATIC bit.c)
|
||||
target_link_libraries(bitop)
|
||||
|
||||
include_directories(${LUA_INCLUDE_DIR})
|
||||
|
@ -1,3 +1,3 @@
|
||||
add_library(gmp mini-gmp.c)
|
||||
add_library(gmp STATIC mini-gmp.c)
|
||||
target_link_libraries(gmp)
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
add_library(jsoncpp jsoncpp.cpp)
|
||||
add_library(jsoncpp STATIC jsoncpp.cpp)
|
||||
target_link_libraries(jsoncpp)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user