Pass on options to Arbutils
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
Signed-off-by: Deukhoofd <Deukhoofd@gmail.com>
This commit is contained in:
parent
b5d8b89c38
commit
ef50b4c7ab
|
@ -1,7 +1,6 @@
|
|||
cmake_minimum_required(VERSION 3.16)
|
||||
include(CheckIPOSupported)
|
||||
include(CMakeLists.txt.in)
|
||||
include_arbutils()
|
||||
|
||||
project(CreatureLib)
|
||||
|
||||
|
@ -16,6 +15,8 @@ option(TESTS "Whether the test executable should be build as well." OFF)
|
|||
option(STATICC "Whether gcc and stdc++ should be linked statically to the library." OFF)
|
||||
set(LEVEL_SIZE "8" CACHE STRING "Number of bits to store the level as. Currently reserved, and can only be 8")
|
||||
|
||||
include_arbutils()
|
||||
|
||||
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
||||
add_compile_options(-fconcepts)
|
||||
endif ()
|
||||
|
|
|
@ -11,6 +11,7 @@ ExternalProject_Add(arbutils
|
|||
BUILD_COMMAND ""
|
||||
INSTALL_COMMAND ""
|
||||
TEST_COMMAND ""
|
||||
CMAKE_ARGS "-DSHARED=${SHARED} -DWINDOWS=${WINDOWS} -DSTATICC=${STATICC}"
|
||||
)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue