69174470f9
* remove outdated (and now simply wrong) comment * fix embedded shaders when Wicked is used as a subproject * get rid of unnecessary generate_wishaderdump target * add "codegen" stuff to toplevel to enable "codegen" target
212 lines
6.9 KiB
CMake
212 lines
6.9 KiB
CMake
cmake_minimum_required(VERSION 3.19)
|
|
|
|
# enable "codegen" target if supported by CMake
|
|
if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.31)
|
|
cmake_policy(SET CMP0171 NEW)
|
|
set(codegen CODEGEN)
|
|
endif()
|
|
|
|
if (${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR})
|
|
message(FATAL_ERROR
|
|
"In-source builds are not supported!\n"
|
|
"Run `git clean -d -f` to clean up the files CMake has created (stash "
|
|
"your changes first, if you have made any), then run `cmake -B build "
|
|
"<other_options>` followed by `cmake --build build --parallel`"
|
|
)
|
|
endif()
|
|
|
|
project(WickedEngine)
|
|
|
|
include(CheckIPOSupported)
|
|
check_ipo_supported(RESULT ipo_supported)
|
|
|
|
set(WICKED_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
option(WICKED_DYNAMIC_LIBRARY "Build WickedEngine as a dynamic library" OFF)
|
|
option(WICKED_PIC "Build WickedEngine as position-independent code" WICKED_DYNAMIC_LIBRARY)
|
|
option(USE_LIBCXX "Link WickedEngine to llvm libc++ library - only available with the Clang compiler" OFF)
|
|
option(WICKED_EDITOR "Build WickedEngine editor" ON)
|
|
option(WICKED_TESTS "Build WickedEngine tests" ON)
|
|
option(WICKED_IMGUI_EXAMPLE "Build WickedEngine imgui example" ON)
|
|
option(WICKED_ENABLE_IPO "Enable IPO/LTO in non-debug builds" ${ipo_supported})
|
|
option(WICKED_EMBED_SHADERS "Embed shaders into the library" NO)
|
|
if(UNIX)
|
|
option(WICKED_ENABLE_ASAN "Enable AddressSanitizer in debug builds" OFF)
|
|
option(WICKED_ENABLE_UBSAN "Enable UndefinedBehaviourSanitizer in debug builds" OFF)
|
|
option(WICKED_ENABLE_TSAN "Enable ThreadSanitizer in debug builds" OFF)
|
|
option(WICKED_ENABLE_SAN_ALWAYS "Enable the selected sanitizers in all builds, not just debug" OFF)
|
|
endif()
|
|
if(UNIX)
|
|
option(WICKED_LINUX_TEMPLATE "Build WickedEngine Linux template" ON)
|
|
elseif(WIN32)
|
|
option(WICKED_WINDOWS_TEMPLATE "Build WickedEngine Windows template" ON)
|
|
endif()
|
|
|
|
if (CMAKE_HOST_WIN32)
|
|
set(symlink_default OFF)
|
|
else()
|
|
set(symlink_default ON)
|
|
endif()
|
|
option(WICKED_ENABLE_SYMLINKS "Prefer symlinking over copying directories" ${symlink_default})
|
|
|
|
# check that IPO is supported when turned on
|
|
if(WICKED_ENABLE_IPO)
|
|
check_ipo_supported()
|
|
endif()
|
|
|
|
if(WICKED_ENABLE_SYMLINKS)
|
|
# check for symlink support (on windows it requires admin or developer mode)
|
|
execute_process(
|
|
COMMAND ${CMAKE_COMMAND} -E create_symlink CMakeLists.txt ${CMAKE_CURRENT_BINARY_DIR}/symlink-test
|
|
ERROR_QUIET
|
|
RESULT_VARIABLE symlink_check_result
|
|
)
|
|
if(symlink_check_result EQUAL 0)
|
|
file(REMOVE ${CMAKE_BINARY_DIR}/symlink-test)
|
|
set(COPY_OR_SYMLINK_DIR_CMD create_symlink)
|
|
else()
|
|
message(FATAL_ERROR "Symlinks are not supported. Either disable them using -DWICKED_ENABLE_SYMLINKS=OFF or enable Windows' developer mode")
|
|
endif()
|
|
else()
|
|
if(CMAKE_VERSION VERSION_LESS "3.26.0")
|
|
set(COPY_OR_SYMLINK_DIR_CMD copy_directory)
|
|
else()
|
|
set(COPY_OR_SYMLINK_DIR_CMD copy_directory_if_different)
|
|
endif()
|
|
endif()
|
|
|
|
|
|
# Configure CMake global variables
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE WICKED_PIC)
|
|
|
|
# Use solution folders to organize projects
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
|
|
|
if(WICKED_ENABLE_ASAN AND WICKED_ENABLE_TSAN)
|
|
message(FATAL_ERROR "WICKED_ENABLE_ASAN and WICKED_ENABLE_TSAN are mutually exclusive!")
|
|
endif()
|
|
|
|
if(WICKED_ENABLE_ASAN)
|
|
set(SANITIZE_OPTIONS "-fsanitize=address")
|
|
endif()
|
|
|
|
if(WICKED_ENABLE_TSAN)
|
|
set(SANITIZE_OPTIONS "${SANITIZE_OPTIONS} -fsanitize=thread")
|
|
endif()
|
|
|
|
if(WICKED_ENABLE_UBSAN)
|
|
set(SANITIZE_OPTIONS "${SANITIZE_OPTIONS} -fsanitize=undefined")
|
|
endif()
|
|
|
|
if(WICKED_ENABLE_SAN_ALWAYS)
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${SANITIZE_OPTIONS}")
|
|
add_link_options(${SANITIZE_LINK_OPTIONS})
|
|
else()
|
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} ${SANITIZE_OPTIONS}")
|
|
add_link_options($<$<CONFIG:Debug>:${SANITIZE_LINK_OPTIONS}>)
|
|
endif()
|
|
|
|
if (WIN32)
|
|
set(PLATFORM "Windows")
|
|
add_compile_definitions(WIN32=1)
|
|
add_compile_definitions(_HAS_EXCEPTIONS=0)
|
|
elseif (UNIX)
|
|
set(PLATFORM "SDL2")
|
|
add_compile_definitions(SDL2=1)
|
|
add_compile_definitions(_GLIBCXX_USE_CXX11_ABI=1)
|
|
endif()
|
|
|
|
if (MSVC)
|
|
add_compile_options(
|
|
/W3 # warning level 3
|
|
/MP # multi-processor compilation
|
|
/EHsc- # exceptions disabled
|
|
/GR- # runtime type information disabled
|
|
$<$<CONFIG:Release>:/GS-> # security check disabled in Release
|
|
)
|
|
else()
|
|
set(ubsan_active
|
|
"$<AND:$<BOOL:${WICKED_ENABLE_UBSAN}>,$<OR:$<CONFIG:Debug>,$<BOOL:${WICKED_ENABLE_SAN_ALWAYS}>>>"
|
|
)
|
|
# Common compiler options and warning level for CLANG and GCC:
|
|
add_compile_options(
|
|
-Wall # warning level: all
|
|
|
|
# some warnings are disabled to better match MSVC warning level 3:
|
|
-Wno-unused-variable
|
|
-Wno-unused-function
|
|
-Wno-unused-but-set-variable
|
|
-Wno-sign-compare
|
|
|
|
$<$<COMPILE_LANGUAGE:CXX>:-fno-exceptions> # exceptions disabled
|
|
$<$<AND:$<COMPILE_LANGUAGE:CXX>,$<NOT:${ubsan_active}>>:-fno-rtti> # runtime type information disabled
|
|
|
|
# security checks disabled in Release:
|
|
$<$<CONFIG:Release>:-fno-stack-protector>
|
|
$<$<CONFIG:Release>:-fcf-protection=none>
|
|
$<$<AND:$<CONFIG:Release>,$<NOT:$<PLATFORM_ID:Windows>>>:-fno-stack-clash-protection> # not supported on Windows
|
|
$<$<CONFIG:Release>:-fno-stack-check>
|
|
$<$<AND:$<CONFIG:Release>,$<NOT:$<PLATFORM_ID:Windows>>>:-fno-asynchronous-unwind-tables> # seems to crash LUA evaluation on Windows
|
|
)
|
|
endif()
|
|
|
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
|
# CLANG specific compile options:
|
|
add_compile_options(
|
|
-fdeclspec
|
|
-fms-extensions
|
|
|
|
-Wno-nullability-completeness
|
|
-Wno-unused-private-field
|
|
|
|
# Increase Ccache hit rate, note that you also need to set config
|
|
# options in your Ccache config
|
|
# see https://ccache.dev/manual/latest.html#_precompiled_headers
|
|
"SHELL:-Xclang -fno-pch-timestamp"
|
|
)
|
|
if (USE_LIBCXX)
|
|
add_compile_options(
|
|
$<$<COMPILE_LANGUAGE:CXX>:-stdlib=libc++>
|
|
)
|
|
add_link_options(
|
|
-stdlib=libc++
|
|
)
|
|
endif()
|
|
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
|
# GCC specific compile options:
|
|
add_compile_options(
|
|
-Wno-strict-aliasing
|
|
)
|
|
endif()
|
|
|
|
add_subdirectory(WickedEngine)
|
|
add_custom_target(Content
|
|
COMMAND ${CMAKE_COMMAND} -E ${COPY_OR_SYMLINK_DIR_CMD} ${WICKED_ROOT_DIR}/Content ${CMAKE_CURRENT_BINARY_DIR}/Content
|
|
COMMENT "$<IF:$<BOOL:${WICKED_ENABLE_SYMLINKS}>,Symlinking,Copying> Content directory"
|
|
VERBATIM
|
|
)
|
|
|
|
if (WICKED_EDITOR)
|
|
add_subdirectory(Editor)
|
|
endif()
|
|
|
|
if (WICKED_TESTS)
|
|
add_subdirectory(Samples/Tests)
|
|
endif()
|
|
|
|
if (WICKED_IMGUI_EXAMPLE)
|
|
add_subdirectory(Samples/Example_ImGui)
|
|
add_subdirectory(Samples/Example_ImGui_Docking)
|
|
endif()
|
|
|
|
if (WICKED_LINUX_TEMPLATE)
|
|
add_subdirectory(Samples/Template_Linux)
|
|
endif()
|
|
|
|
if (WICKED_WINDOWS_TEMPLATE)
|
|
add_subdirectory(Samples/Template_Windows)
|
|
endif()
|