61 lines
2.1 KiB
CMake
61 lines
2.1 KiB
CMake
cmake_minimum_required(VERSION 3.13)
|
|
project(CreatureLib)
|
|
|
|
# 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.
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
|
|
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)
|
|
|
|
include(CmakeConanSetup.cmake)
|
|
SetupConan()
|
|
|
|
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
|
find_package(Threads REQUIRED)
|
|
|
|
# Set whether we want a static or shared library.
|
|
set(LIBTYPE STATIC)
|
|
if (SHARED)
|
|
set(LIBTYPE SHARED)
|
|
endif (SHARED)
|
|
|
|
file(GLOB_RECURSE LIBRARY_SRC_FILES
|
|
"src/*.cpp" "src/*.hpp" "CInterface/*.cpp" "CInterface/*.hpp")
|
|
add_library(CreatureLib SHARED ${LIBRARY_SRC_FILES})
|
|
|
|
# If we are building for Windows we need to set some specific variables.
|
|
if (WINDOWS)
|
|
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")
|
|
endif (WINDOWS)
|
|
|
|
# Set up links to all relevant libraries.
|
|
SET(_LIBRARYLINKS Arbutils)
|
|
|
|
# If we need to link the C libraries statically, do so.
|
|
if (STATICC)
|
|
message(STATUS "Linking C statically.")
|
|
SET(_LIBRARYLINKS ${_LIBRARYLINKS} -static-libgcc -static-libstdc++)
|
|
endif ()
|
|
|
|
# And link the libraries together
|
|
target_link_libraries(CreatureLib PUBLIC ${_LIBRARYLINKS} Threads::Threads)
|
|
|
|
if (TESTS)
|
|
# Create Test executable
|
|
file(GLOB_RECURSE TEST_FILES "tests/*.cpp" "tests/*.hpp")
|
|
add_executable(CreatureLibTests ${TEST_FILES} extern/catch.hpp tests/BattleTests/EventHookTests.cpp)
|
|
target_link_libraries(CreatureLibTests PUBLIC CreatureLib Arbutils)
|
|
|
|
# Add a definition for the test library
|
|
target_compile_definitions(CreatureLibTests PRIVATE TESTS_BUILD)
|
|
endif ()
|