2020-09-25 11:05:15 +00:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2020-12-31 12:52:11 +00:00
|
|
|
include(CheckIPOSupported)
|
2021-04-12 16:50:50 +00:00
|
|
|
include(CMakeLists.txt.in)
|
2020-12-31 12:52:11 +00:00
|
|
|
|
2019-10-06 11:50:52 +00:00
|
|
|
project(CreatureLib)
|
|
|
|
|
2020-07-17 11:12:21 +00:00
|
|
|
# Enable all warnings, and make them error when occurring.
|
|
|
|
add_compile_options(-Wall -Wextra -Werror)
|
|
|
|
# We like new stuff, so set the c++ standard to c++20.
|
2020-06-26 15:08:23 +00:00
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
2019-10-06 11:50:52 +00:00
|
|
|
|
2020-07-17 11:12:21 +00:00
|
|
|
option(WINDOWS "Whether the build target is Windows or not." OFF)
|
|
|
|
option(SHARED "Whether we should build a shared library, instead of a static one." OFF)
|
|
|
|
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)
|
2020-09-19 10:03:41 +00:00
|
|
|
set(LEVEL_SIZE "8" CACHE STRING "Number of bits to store the level as. Currently reserved, and can only be 8")
|
2020-05-03 10:45:12 +00:00
|
|
|
|
2021-04-12 17:05:30 +00:00
|
|
|
include_arbutils()
|
|
|
|
|
2020-08-14 12:26:40 +00:00
|
|
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
|
|
|
add_compile_options(-fconcepts)
|
|
|
|
endif ()
|
|
|
|
|
2020-12-31 12:51:43 +00:00
|
|
|
if (CMAKE_BUILD_TYPE MATCHES Release AND NOT WINDOWS)
|
2020-08-16 15:41:56 +00:00
|
|
|
# Include debug symbols in all linux builds
|
2020-12-31 12:51:43 +00:00
|
|
|
message("Including debug symbols")
|
|
|
|
add_compile_options(-g -gline-tables-only)
|
2020-08-16 15:41:56 +00:00
|
|
|
endif ()
|
|
|
|
|
2020-01-01 12:02:00 +00:00
|
|
|
|
2020-08-07 10:20:59 +00:00
|
|
|
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
|
2020-07-17 11:12:21 +00:00
|
|
|
# Set whether we want a static or shared library.
|
|
|
|
set(LIBTYPE STATIC)
|
|
|
|
if (SHARED)
|
|
|
|
set(LIBTYPE SHARED)
|
|
|
|
endif (SHARED)
|
2019-10-06 11:50:52 +00:00
|
|
|
|
2020-09-21 10:51:45 +00:00
|
|
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
|
|
|
add_link_options(-fuse-ld=lld)
|
|
|
|
endif ()
|
|
|
|
|
2020-08-19 18:11:00 +00:00
|
|
|
if (LEVEL_SIZE STREQUAL "8")
|
|
|
|
add_definitions(-DLEVEL_U8)
|
2020-08-22 08:21:39 +00:00
|
|
|
message(STATUS "Using level size of 8")
|
2020-09-27 09:25:32 +00:00
|
|
|
elseif (LEVEL_SIZE STREQUAL "16")
|
|
|
|
add_definitions(-DLEVEL_U16)
|
|
|
|
message(STATUS "Using level size of 16")
|
|
|
|
elseif (LEVEL_SIZE STREQUAL "32")
|
|
|
|
add_definitions(-DLEVEL_U32)
|
|
|
|
message(STATUS "Using level size of 32")
|
|
|
|
elseif (LEVEL_SIZE STREQUAL "64")
|
|
|
|
add_definitions(-DLEVEL_U64)
|
|
|
|
message(STATUS "Using level size of 64")
|
2020-08-19 18:11:00 +00:00
|
|
|
else ()
|
|
|
|
message(FATAL_ERROR, "Invalid level size was given.")
|
|
|
|
endif ()
|
|
|
|
|
2020-07-31 08:51:03 +00:00
|
|
|
file(GLOB_RECURSE LIBRARY_SRC_FILES
|
|
|
|
"src/*.cpp" "src/*.hpp" "CInterface/*.cpp" "CInterface/*.hpp")
|
|
|
|
add_library(CreatureLib SHARED ${LIBRARY_SRC_FILES})
|
2020-09-25 11:05:15 +00:00
|
|
|
target_precompile_headers(CreatureLib PUBLIC src/Precompiled.hxx)
|
2019-10-17 12:33:25 +00:00
|
|
|
|
2020-12-31 12:52:11 +00:00
|
|
|
# If interprocedural optimization is available, apply it
|
|
|
|
check_ipo_supported(RESULT IPO_SUPPORTED)
|
|
|
|
if (IPO_SUPPORTED)
|
|
|
|
message(STATUS "IPO / LTO enabled")
|
|
|
|
set_property(TARGET CreatureLib PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE)
|
|
|
|
endif ()
|
|
|
|
|
2019-10-06 11:50:52 +00:00
|
|
|
if (WINDOWS)
|
2020-07-17 11:12:21 +00:00
|
|
|
MESSAGE(WARNING, "Using Windows Build.")
|
|
|
|
# Add a definition for the compiler, so we can use it in C++ as well.
|
|
|
|
ADD_DEFINITIONS(-D WINDOWS=1)
|
|
|
|
# -m64: Build a 64 bit library
|
|
|
|
add_compile_options(-m64)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wl,-allow-multiple-definition")
|
2021-03-07 08:43:10 +00:00
|
|
|
if (SHARED)
|
|
|
|
set_target_properties(CreatureLib PROPERTIES SUFFIX ".dll")
|
|
|
|
endif (SHARED)
|
2020-05-02 13:55:31 +00:00
|
|
|
endif (WINDOWS)
|
|
|
|
|
2021-03-07 08:43:10 +00:00
|
|
|
|
2020-07-17 11:12:21 +00:00
|
|
|
# Set up links to all relevant libraries.
|
|
|
|
SET(_LIBRARYLINKS Arbutils)
|
2020-08-15 15:47:01 +00:00
|
|
|
if (NOT WINDOWS)
|
2021-03-26 13:09:22 +00:00
|
|
|
set(_LIBRARYLINKS ${_LIBRARYLINKS} -lbfd -ldl)
|
2020-08-15 15:47:01 +00:00
|
|
|
endif ()
|
2020-07-17 11:12:21 +00:00
|
|
|
|
|
|
|
# If we need to link the C libraries statically, do so.
|
2020-05-02 13:55:31 +00:00
|
|
|
if (STATICC)
|
2020-05-03 10:45:12 +00:00
|
|
|
message(STATUS "Linking C statically.")
|
2021-03-26 13:09:22 +00:00
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "-Wl,--as-needed")
|
2020-08-20 13:12:19 +00:00
|
|
|
SET(_LIBRARYLINKS ${_LIBRARYLINKS} -static-libgcc -static-libstdc++ -Wl,-Bstatic -lstdc++ -lpthread)
|
2020-05-02 13:55:31 +00:00
|
|
|
endif ()
|
|
|
|
|
2020-07-17 11:12:21 +00:00
|
|
|
# And link the libraries together
|
2020-08-07 10:20:59 +00:00
|
|
|
target_link_libraries(CreatureLib PUBLIC ${_LIBRARYLINKS} Threads::Threads)
|
2019-10-06 11:50:52 +00:00
|
|
|
|
2020-07-17 11:12:21 +00:00
|
|
|
if (TESTS)
|
2020-05-02 13:55:31 +00:00
|
|
|
# Create Test executable
|
|
|
|
file(GLOB_RECURSE TEST_FILES "tests/*.cpp" "tests/*.hpp")
|
2020-09-30 16:53:18 +00:00
|
|
|
add_executable(CreatureLibTests ${TEST_FILES} extern/doctest.hpp)
|
2020-07-31 08:51:03 +00:00
|
|
|
target_link_libraries(CreatureLibTests PUBLIC CreatureLib Arbutils)
|
2020-05-02 13:55:31 +00:00
|
|
|
|
2019-12-27 12:50:12 +00:00
|
|
|
# Add a definition for the test library
|
|
|
|
target_compile_definitions(CreatureLibTests PRIVATE TESTS_BUILD)
|
2020-05-02 13:55:31 +00:00
|
|
|
endif ()
|