PrimeWorldEditor/CMakeLists.txt

33 lines
820 B
CMake
Raw Normal View History

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-05-23 23:04:29 +00:00
project(PrimeWorldEditor CXX)
include(./dew.cmake)
integrate_dew()
2019-05-26 06:24:13 +00:00
include(cmake/generate_product_version.cmake)
if(MSVC)
add_compile_options(/WX /wd4267 /wd4100 /wd4101 /wd4189)
2019-05-29 02:51:30 +00:00
else()
add_compile_options(-Wno-multichar)
endif()
if(APPLE)
2019-05-27 21:25:00 +00:00
add_compile_definitions(GL_SILENCE_DEPRECATION)
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
add_subdirectory(src/Core)
add_subdirectory(src/Editor)