77 lines
2.8 KiB
CMake
77 lines
2.8 KiB
CMake
cmake_minimum_required(VERSION 3.16)
|
|
project(Arbutils)
|
|
|
|
# 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)
|
|
option(PRETTYTRACES "Whether full stacktraces should be included. Note that this adds a dependency to libdw." ON)
|
|
option(SIGNAL_HANDLING "whether to include signal handling." OFF)
|
|
|
|
# Set whether we want a static or shared library.
|
|
set(LIBTYPE STATIC)
|
|
if (SHARED)
|
|
set(LIBTYPE SHARED)
|
|
endif (SHARED)
|
|
|
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
|
add_link_options(-fuse-ld=lld)
|
|
endif ()
|
|
|
|
if (NOT WINDOWS)
|
|
# Include debug symbols in all linux builds
|
|
add_compile_options(-g -gfull -g3)
|
|
endif()
|
|
|
|
# Grab all cpp and hpp files in our source directories.
|
|
file(GLOB_RECURSE SRC_FILES "src/*.cpp" "src/*.hpp" "CInterface/*.cpp" "CInterface/*.hpp")
|
|
add_library(Arbutils ${LIBTYPE} ${SRC_FILES})
|
|
target_precompile_headers(Arbutils PUBLIC src/Precompiled.hxx)
|
|
|
|
# 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)
|
|
endif (WINDOWS)
|
|
|
|
set(LINKS)
|
|
if (NOT WINDOWS AND PRETTYTRACES)
|
|
set(LINKS ${LINKS} -ldw)
|
|
ADD_DEFINITIONS(-DPRETTYTRACES=1)
|
|
endif()
|
|
if (SIGNAL_HANDLING)
|
|
ADD_DEFINITIONS(-DSIGNAL_HANDLING=1)
|
|
endif()
|
|
|
|
# If we want to link the C and C++ library statically, link those as well.
|
|
if (STATICC)
|
|
set(LINKS ${LINKS} -static-libgcc -static-libstdc++ -Wl,-Bstatic -lstdc++ -lpthread)
|
|
endif(STATICC)
|
|
target_link_libraries(Arbutils ${LINKS})
|
|
|
|
if (TESTS)
|
|
# If we want a tests executable, grab all tests source files
|
|
file(GLOB_RECURSE TEST_FILES "tests/*.cpp" "tests/*.hpp")
|
|
# And create an executable from it. Also include doctest.hpp.
|
|
add_executable(ArbutilsTests ${TEST_FILES} extern/doctest.hpp)
|
|
# And finally link the library to the executable.
|
|
target_link_libraries(ArbutilsTests Arbutils ${LINKS})
|
|
# Add a compilation definition to the code that we are building a test build.
|
|
target_compile_definitions(ArbutilsTests PRIVATE TESTS_BUILD)
|
|
endif ()
|
|
|
|
|
|
# If we aren't building for Windows, also include an option for installing on unix.
|
|
if (NOT WINDOWS)
|
|
install(TARGETS Arbutils
|
|
CONFIGURATIONS Release
|
|
RUNTIME DESTINATION lib)
|
|
endif() |