forked from JTippetts/U3DTerrainEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
34 lines (34 loc) · 1.85 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Set CMake minimum version and CMake policy required by UrhoCommon module
cmake_minimum_required (VERSION 3.2.3)
if (COMMAND cmake_policy)
# Libraries linked via full path no longer produce linker search paths
cmake_policy (SET CMP0003 NEW)
# INTERFACE_LINK_LIBRARIES defines the link interface
cmake_policy (SET CMP0022 NEW)
# Disallow use of the LOCATION target property - so we set to OLD as we still need it
cmake_policy (SET CMP0026 OLD)
# MACOSX_RPATH is enabled by default
cmake_policy (SET CMP0042 NEW)
# Honor the visibility properties for SHARED target types only
cmake_policy (SET CMP0063 OLD)
endif ()
# Set project name
project (TEdit)
# Set CMake modules search path
set (CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMake/Modules)
# Include UrhoCommon.cmake module after setting project name
include (UrhoCommon)
set(INCLUDE_DIRS_ONLY ${INCLUDE_DIRS_ONLY} ThirdParty/accidental-noise-library/VM ThirdParty/accidental-noise-library/Imaging )
include_directories (${INCLUDE_DIRS_ONLY})
include_directories(${URHO3D_HOME}/include/Urho3D/ThirdParty/Lua${JIT})
include_directories(${URHO3D_HOME}/include/Urho3D/ThirdParty/toluapp)
include_directories(${URHO3D_HOME}/include/Urho3D/ThirdParty/AngelScript)
# Define target name
set (TARGET_NAME TEdit)
# Define source files
define_source_files (EXTRA_CPP_FILES ThirdParty/accidental-noise-library/Bindings/bind_anl.cpp ThirdParty/accidental-noise-library/Bindings/bind_anl_angelscript.cpp
ThirdParty/angelscript/sdk/add_on/scriptstdstring/scriptstdstring.cpp ThirdParty/accidental-noise-library/Bindings/bind_anl_angelscript.cpp
ThirdParty/angelscript/sdk/add_on/scriptstdstring/scriptstdstring_utils.cpp ThirdParty/accidental-noise-library/Bindings/bind_anl_angelscript.cpp
ThirdParty/angelscript/sdk/add_on/scriptarray/scriptarray.cpp)
# Setup target with resource copying
setup_main_executable ()