2019-12-29 14:29:52 +00:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
2020-12-31 12:56:36 +00:00
|
|
|
include(CheckIPOSupported)
|
|
|
|
|
2019-12-29 14:29:52 +00:00
|
|
|
project(pkmnLib)
|
|
|
|
|
2020-07-18 10:42:54 +00:00
|
|
|
# Enable all warnings, and make them error when occurring.
|
2020-07-18 11:46:55 +00:00
|
|
|
add_compile_options(-Wall -Wextra -Werror)
|
2020-07-18 10:42:54 +00:00
|
|
|
# We like new stuff, so set the c++ standard to c++20.
|
2020-07-04 13:50:30 +00:00
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
2021-03-26 14:28:24 +00:00
|
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
2019-12-29 14:29:52 +00:00
|
|
|
|
2020-07-18 10:42:54 +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)
|
|
|
|
set(SCRIPT_PROVIDER "angelscript" CACHE STRING "Which script provider to use.")
|
2020-09-19 10:22:52 +00:00
|
|
|
set(LEVEL_SIZE "8" CACHE STRING "Number of bits to store the level as. Can be 8")
|
2020-01-09 16:03:34 +00:00
|
|
|
|
2020-08-16 09:12:04 +00:00
|
|
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
|
|
|
add_compile_options(-fconcepts)
|
|
|
|
endif ()
|
|
|
|
|
2020-09-29 16:28:54 +00:00
|
|
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
|
|
|
add_link_options(-fuse-ld=lld)
|
|
|
|
endif ()
|
|
|
|
|
2019-12-29 14:29:52 +00:00
|
|
|
if (WINDOWS)
|
2020-01-01 18:59:47 +00:00
|
|
|
SET(CMAKE_SYSTEM_NAME Windows)
|
2019-12-29 14:29:52 +00:00
|
|
|
ADD_DEFINITIONS(-D WINDOWS=1)
|
2020-07-18 10:42:54 +00:00
|
|
|
endif (WINDOWS)
|
2019-12-29 14:29:52 +00:00
|
|
|
|
2020-07-18 11:44:52 +00:00
|
|
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
2020-07-18 12:28:59 +00:00
|
|
|
# The angelscript libraries break these warnings extensively. Turn them off.
|
|
|
|
add_compile_options(-Wno-error=cast-function-type -Wno-cast-function-type)
|
|
|
|
add_compile_options(-Wno-error=type-limits -Wno-type-limits)
|
2020-07-18 11:44:52 +00:00
|
|
|
endif ()
|
|
|
|
|
2019-12-31 17:41:41 +00:00
|
|
|
message(STATUS "Using:
|
|
|
|
\t C ${CMAKE_C_COMPILER}
|
|
|
|
\t C++ ${CMAKE_CXX_COMPILER}
|
|
|
|
\t CXX ABI ${CMAKE_CXX_COMPILER_ABI}
|
|
|
|
\t C++ Version ${CMAKE_CXX_STANDARD}")
|
|
|
|
|
2020-09-29 16:28:54 +00:00
|
|
|
|
2020-08-22 10:24:52 +00:00
|
|
|
if (LEVEL_SIZE STREQUAL "8")
|
|
|
|
add_definitions(-DLEVEL_U8)
|
2020-09-29 16:28:54 +00:00
|
|
|
message(STATUS "Using level size of 8")
|
|
|
|
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-22 10:24:52 +00:00
|
|
|
else ()
|
|
|
|
message(FATAL_ERROR, "Invalid level size was given.")
|
|
|
|
endif ()
|
|
|
|
|
2020-07-18 10:42:54 +00:00
|
|
|
include(CmakeConanSetup.cmake)
|
|
|
|
SetupConan()
|
2019-12-29 14:29:52 +00:00
|
|
|
|
2020-01-01 18:59:47 +00:00
|
|
|
message(STATUS "Using Conan Libs:")
|
|
|
|
foreach (_conanLib ${CONAN_LIBS})
|
|
|
|
message(STATUS "\t ${_conanLib}")
|
2020-07-18 10:42:54 +00:00
|
|
|
endforeach ()
|
|
|
|
|
2020-12-31 12:55:31 +00:00
|
|
|
if (CMAKE_BUILD_TYPE MATCHES Release AND NOT WINDOWS)
|
2020-08-16 16:03:26 +00:00
|
|
|
# Include debug symbols in all linux builds
|
2020-12-31 12:55:31 +00:00
|
|
|
message("Including debug symbols")
|
|
|
|
add_compile_options(-g -gline-tables-only)
|
2020-08-16 16:03:26 +00:00
|
|
|
endif ()
|
|
|
|
|
2020-07-18 10:42:54 +00:00
|
|
|
# Set whether we want a static or shared library.
|
|
|
|
set(LIBTYPE STATIC)
|
|
|
|
if (SHARED)
|
|
|
|
set(LIBTYPE SHARED)
|
|
|
|
endif (SHARED)
|
2019-12-29 14:29:52 +00:00
|
|
|
|
2020-01-12 17:20:59 +00:00
|
|
|
SET(FILE_SOURCE
|
|
|
|
"src/Battling/*.cpp"
|
|
|
|
"src/Battling/*.hpp"
|
|
|
|
"src/Library/*.cpp"
|
|
|
|
"src/Library/*.hpp"
|
2020-04-14 14:36:54 +00:00
|
|
|
"CInterface/Core.*"
|
|
|
|
"CInterface/Library/*.cpp"
|
|
|
|
"CInterface/Library/*.hpp"
|
|
|
|
"CInterface/Battling/*.cpp"
|
|
|
|
"CInterface/Battling/*.hpp"
|
2020-01-12 17:20:59 +00:00
|
|
|
)
|
|
|
|
if (SCRIPT_PROVIDER STREQUAL "angelscript")
|
|
|
|
SET(FILE_SOURCE ${FILE_SOURCE}
|
2020-02-02 11:23:50 +00:00
|
|
|
"src/ScriptResolving/AngelScript/*.cpp"
|
|
|
|
"src/ScriptResolving/AngelScript/*.hpp"
|
2020-01-12 17:20:59 +00:00
|
|
|
"extern/angelscript_addons/*.cpp"
|
|
|
|
"extern/angelscript_addons/*.h"
|
2020-04-14 14:36:54 +00:00
|
|
|
"CInterface/AngelScript/*.cpp"
|
|
|
|
"CInterface/AngelScript/*.hpp"
|
2020-07-31 08:57:48 +00:00
|
|
|
)
|
2020-02-06 15:25:55 +00:00
|
|
|
ADD_DEFINITIONS(-D AS_USE_ACCESSORS=1)
|
2020-07-31 08:57:48 +00:00
|
|
|
endif ()
|
2020-01-12 17:20:59 +00:00
|
|
|
|
2020-07-18 10:42:54 +00:00
|
|
|
file(GLOB_RECURSE CORE_SRC_FILES ${FILE_SOURCE})
|
|
|
|
add_library(pkmnLib ${LIBTYPE} ${CORE_SRC_FILES})
|
2020-09-29 15:51:11 +00:00
|
|
|
target_precompile_headers(pkmnLib PUBLIC src/Precompiled.hxx)
|
2020-01-12 17:20:59 +00:00
|
|
|
|
2020-12-31 12:56:36 +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 pkmnLib PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE)
|
|
|
|
endif ()
|
|
|
|
|
2020-07-31 08:57:48 +00:00
|
|
|
SET(_LINKS CreatureLib Arbutils)
|
|
|
|
SET(_TESTLINKS pkmnLib CreatureLib Arbutils)
|
2020-01-09 16:03:34 +00:00
|
|
|
|
2020-01-12 17:20:59 +00:00
|
|
|
if (SCRIPT_PROVIDER STREQUAL "angelscript")
|
2020-07-18 10:42:54 +00:00
|
|
|
message(STATUS "Using Angelscript as script provider.")
|
|
|
|
ADD_DEFINITIONS(-D ANGELSCRIPT=1)
|
2020-08-16 16:03:26 +00:00
|
|
|
SET(_LINKS ${_LINKS} angelscript)
|
|
|
|
SET(_TESTLINKS ${_TESTLINKS} angelscript)
|
2020-07-18 10:42:54 +00:00
|
|
|
endif ()
|
2020-01-12 17:20:59 +00:00
|
|
|
|
2020-07-31 15:38:28 +00:00
|
|
|
# If we are building for Windows we need to set some specific variables.
|
2019-12-31 19:01:53 +00:00
|
|
|
if (WINDOWS)
|
2020-07-31 15:38:28 +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")
|
2020-12-07 17:01:10 +00:00
|
|
|
if (SHARED)
|
|
|
|
set_target_properties(pkmnLib PROPERTIES SUFFIX ".dll")
|
|
|
|
endif(SHARED)
|
2019-12-31 19:01:53 +00:00
|
|
|
endif (WINDOWS)
|
|
|
|
|
2020-08-16 16:03:26 +00:00
|
|
|
if (NOT WINDOWS)
|
2021-03-26 14:28:24 +00:00
|
|
|
set(_LINKS ${_LINKS} -lbfd -ldl)
|
2020-08-16 16:03:26 +00:00
|
|
|
endif ()
|
2020-07-31 15:38:28 +00:00
|
|
|
|
2020-04-12 09:20:16 +00:00
|
|
|
if (STATICC)
|
2021-03-26 14:28:24 +00:00
|
|
|
set (CMAKE_SHARED_LINKER_FLAGS "-Wl,--as-needed")
|
2020-05-03 10:46:35 +00:00
|
|
|
message(STATUS "Linking C library statically")
|
2021-03-26 14:28:24 +00:00
|
|
|
set(_LINKS ${_LINKS} -static-libgcc -static-libstdc++ -Wl,-Bstatic -lm -lstdc++ -lpthread)
|
|
|
|
SET(_TESTLINKS ${_TESTLINKS} -static-libgcc -static-libstdc++ -Wl,-Bstatic -lstdc++ -lpthread)
|
2020-12-11 11:34:23 +00:00
|
|
|
else()
|
|
|
|
SET(_LINKS ${_LINKS} Threads::Threads)
|
2020-04-12 09:20:16 +00:00
|
|
|
endif()
|
|
|
|
|
2021-03-26 16:52:26 +00:00
|
|
|
target_link_libraries(pkmnLib PUBLIC ${_LINKS})
|
2019-12-31 12:58:43 +00:00
|
|
|
|
2020-07-18 10:42:54 +00:00
|
|
|
if (TESTS)
|
2019-12-31 12:58:43 +00:00
|
|
|
# Create Test executable
|
|
|
|
file(GLOB_RECURSE TEST_FILES "tests/*.cpp" "tests/*.hpp")
|
2020-09-29 16:04:06 +00:00
|
|
|
add_executable(pkmnLibTests ${TEST_FILES} extern/doctest.hpp)
|
2020-01-12 17:20:59 +00:00
|
|
|
message(STATUS "${_TESTLINKS}")
|
|
|
|
target_link_libraries(pkmnLibTests PUBLIC ${_TESTLINKS})
|
2019-12-31 12:58:43 +00:00
|
|
|
|
|
|
|
# Add a definition for the test library
|
|
|
|
target_compile_definitions(pkmnLibTests PRIVATE TESTS_BUILD)
|
|
|
|
endif ()
|
|
|
|
|
2019-12-29 14:29:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-31 11:22:05 +00:00
|
|
|
|
|
|
|
|
2020-01-12 17:20:59 +00:00
|
|
|
|