2019-05-23 23:04:29 +00:00
|
|
|
cmake_minimum_required(VERSION 3.12)
|
2019-05-26 06:24:13 +00:00
|
|
|
set(MACOSX_DEPLOYMENT_TARGET 10.10)
|
2019-05-23 23:04:29 +00:00
|
|
|
|
2019-05-29 02:51:30 +00:00
|
|
|
# Use release build type as default (assimp complains if this is unset)
|
|
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
|
|
set(CMAKE_BUILD_TYPE Release)
|
|
|
|
endif()
|
2019-11-25 02:46:57 +00:00
|
|
|
set(CMAKE_CONFIGURATION_TYPES ${CMAKE_BUILD_TYPE})
|
2019-05-29 02:51:30 +00:00
|
|
|
|
2019-05-23 23:04:29 +00:00
|
|
|
project(PrimeWorldEditor CXX)
|
|
|
|
|
2019-11-25 02:46:57 +00:00
|
|
|
option(PWE_PUBLIC_RELEASE "Enable end-user deployment configuration for PWE" ON)
|
2019-06-12 21:21:41 +00:00
|
|
|
if (PWE_PUBLIC_RELEASE)
|
|
|
|
add_compile_definitions(PUBLIC_RELEASE=1)
|
|
|
|
message(STATUS "Enabled public release mode")
|
|
|
|
endif()
|
|
|
|
|
2019-06-05 00:44:39 +00:00
|
|
|
# Ensure submodules checked out
|
|
|
|
if (NOT EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/externals/LibCommon/CMakeLists.txt)
|
2019-11-07 02:52:45 +00:00
|
|
|
message(FATAL_ERROR "Please run 'git submodule update --init --recursive' to fetch submodules.")
|
2019-06-05 00:44:39 +00:00
|
|
|
endif()
|
|
|
|
|
2019-05-23 23:04:29 +00:00
|
|
|
include(./dew.cmake)
|
|
|
|
integrate_dew()
|
|
|
|
|
2019-05-26 06:24:13 +00:00
|
|
|
include(cmake/generate_product_version.cmake)
|
|
|
|
|
2019-05-27 01:49:50 +00:00
|
|
|
if(MSVC)
|
|
|
|
add_compile_options(/WX /wd4267 /wd4100 /wd4101 /wd4189)
|
2019-05-29 02:51:30 +00:00
|
|
|
else()
|
2019-06-05 00:44:39 +00:00
|
|
|
add_compile_options(-Wno-multichar -Wno-undefined-var-template)
|
2019-05-29 02:51:30 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(APPLE)
|
2019-05-27 21:25:00 +00:00
|
|
|
add_compile_definitions(GL_SILENCE_DEPRECATION)
|
2019-05-27 01:49:50 +00:00
|
|
|
endif()
|
|
|
|
|
2019-05-23 23:04:29 +00:00
|
|
|
# Set where the binary files will be built. The program will not execute from
|
|
|
|
# here. You must run "make install" to install these to the proper location
|
|
|
|
# as defined above.
|
2019-05-26 06:24:13 +00:00
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
|
2019-05-23 23:04:29 +00:00
|
|
|
|
2019-06-05 00:44:39 +00:00
|
|
|
# Directly integrate libcommon and block install targets
|
2019-06-12 03:22:25 +00:00
|
|
|
set(LIBCOMMON_GENERATE_INSTALL_TARGETS OFF CACHE BOOL "Make libcommon install targets" FORCE)
|
|
|
|
set(CODEGEN_GENERATE_INSTALL_TARGETS OFF CACHE BOOL "Make codegen install targets" FORCE)
|
2019-06-05 00:44:39 +00:00
|
|
|
set(CODEGEN_BUILD_PACKAGE_DURING_CONFIGURE ON)
|
|
|
|
add_subdirectory(externals/LibCommon)
|
|
|
|
|
2019-05-23 23:04:29 +00:00
|
|
|
add_subdirectory(src/Core)
|
|
|
|
add_subdirectory(src/Editor)
|