jak-project/CMakeLists.txt

120 lines
3.1 KiB
CMake
Raw Normal View History

2020-08-22 22:30:12 -04:00
# Top Level CMakeLists.txt
if (UNIX)
cmake_minimum_required(VERSION 3.10)
else ()
cmake_minimum_required(VERSION 3.16)
endif ()
2020-08-22 22:30:12 -04:00
project(jak)
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Debug")
endif()
2020-08-22 22:30:12 -04:00
set(CMAKE_CXX_STANDARD 17)
2020-08-22 22:30:12 -04:00
2020-08-26 19:40:26 -04:00
# Set default compile flags for GCC
# optimization level can be set here. Note that game/ overwrites this for building game C++ code.
if (UNIX)
2020-08-26 19:40:26 -04:00
message(STATUS "GCC detected, adding compile flags")
set(CMAKE_CXX_FLAGS
"${CMAKE_CXX_FLAGS} \
2020-09-03 22:37:00 -04:00
-Wall \
-Winit-self \
-ggdb \
2020-09-03 22:37:00 -04:00
-Wextra \
-Wno-cast-align \
2020-09-03 22:37:00 -04:00
-Wcast-qual \
-Wdisabled-optimization \
-Wformat \
2020-09-03 22:37:00 -04:00
-Wmissing-include-dirs \
-Woverloaded-virtual \
-Wredundant-decls \
-Wshadow \
-Wsign-promo")
else ()
set(CMAKE_CXX_FLAGS "/EHsc")
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /STACK:10000000")
endif (UNIX)
2020-08-22 22:30:12 -04:00
2020-08-26 22:23:16 -04:00
IF (WIN32)
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
ENDIF ()
2020-08-26 22:23:16 -04:00
option(CODE_COVERAGE "Enable Code Coverage Compiler Flags" OFF)
set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/third-party/cmake/modules/)
2020-09-08 14:39:16 -04:00
if(UNIX AND CODE_COVERAGE)
include(CodeCoverage)
append_coverage_compiler_flags()
message("Code Coverage build is enabled!")
else()
message("Code Coverage build is disabled!")
endif()
2020-08-26 22:23:16 -04:00
2020-08-22 22:30:12 -04:00
# includes relative to top level jak-project folder
include_directories(./)
include_directories(SYSTEM third-party/inja)
# build spdlog as a shared library to improve compile times
# adding this as a SYSTEM include suppresses all the terrible warnings in spdlog
include_directories(SYSTEM third-party/spdlog/include)
# this makes spdlog generate a shared library that we can link against
2020-10-28 20:15:31 -04:00
set(SPDLOG_BUILD_SHARED ON CACHE BOOL "a" FORCE)
# this makes the spdlog includes not use the header only version, making compiling faster
add_definitions(-DSPDLOG_COMPILED_LIB)
# build goos
add_subdirectory(common/goos)
2020-08-23 23:43:11 -04:00
# build type_system library for compiler/decompiler
add_subdirectory(common/type_system)
2020-09-09 00:54:16 -04:00
# build common_util library
add_subdirectory(common/util)
2020-09-07 19:59:44 -04:00
# build cross platform socket library
add_subdirectory(common/cross_sockets)
# build cross platform debug library
add_subdirectory(common/cross_os_debug)
2020-08-22 22:30:12 -04:00
# build decompiler
add_subdirectory(decompiler)
# build the game code in C++
add_subdirectory(game)
# build the compiler
add_subdirectory(goalc)
# build the gtest libraries
add_subdirectory(third-party/googletest)
# build tests
2020-08-22 23:16:48 -04:00
add_subdirectory(test)
# build minilzo library
2020-08-23 23:43:11 -04:00
add_subdirectory(third-party/minilzo)
# build format library
2020-08-26 22:23:16 -04:00
add_subdirectory(third-party/fmt)
# build spdlog library
add_subdirectory(third-party/spdlog)
# build zydis third party library for disassembling x86
option(ZYDIS_BUILD_TOOLS "" OFF)
option(ZYDIS_BUILD_EXAMPLES "" OFF)
option(ZYDIS_BUILD_SHARED_LIB "" ON)
add_subdirectory("third-party/zydis")
2020-08-26 22:23:16 -04:00
# windows memory management lib
IF (WIN32)
add_subdirectory(third-party/mman)
ENDIF ()