Pass on options to Arbutils
continuous-integration/drone/push Build is failing Details

Signed-off-by: Deukhoofd <Deukhoofd@gmail.com>
This commit is contained in:
Deukhoofd 2021-04-12 19:05:30 +02:00
parent b5d8b89c38
commit ef50b4c7ab
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
2 changed files with 3 additions and 1 deletions

View File

@ -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 ()

View File

@ -11,6 +11,7 @@ ExternalProject_Add(arbutils
BUILD_COMMAND ""
INSTALL_COMMAND ""
TEST_COMMAND ""
CMAKE_ARGS "-DSHARED=${SHARED} -DWINDOWS=${WINDOWS} -DSTATICC=${STATICC}"
)