-
Notifications
You must be signed in to change notification settings - Fork 11
/
CMakeLists.txt
146 lines (124 loc) · 6.53 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#----------------------------------------------------------------------------------#
#//////////////////////////////////////////////////////////////////////////////////#
#----------------------------------------------------------------------------------#
#
# Copyright (C) 2018, StepToSky
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1.Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
# 2.Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and / or other materials provided with the distribution.
# 3.Neither the name of StepToSky nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED.IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# Contacts: www.steptosky.com
#
#----------------------------------------------------------------------------------#
#//////////////////////////////////////////////////////////////////////////////////#
#----------------------------------------------------------------------------------#
# init
cmake_minimum_required (VERSION 3.7.0)
message(STATUS "==============================================")
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
#----------------------------------------------------------------------------------#
#//////////////////////////////////////////////////////////////////////////////////#
#----------------------------------------------------------------------------------#
# Solution
include(StsProjectDesc)
project(${ProjectId} LANGUAGES "CXX")
#----------------------------------------------------------------------------------#
# Info file
include(StsInfoFilesGenerator)
genInfoFile(StsProjectDesc "${CMAKE_SOURCE_DIR}/src/Info.h")
#----------------------------------------------------------------------------------#
#//////////////////////////////////////////////////////////////////////////////////#
#----------------------------------------------------------------------------------#
# options
if (NOT TESTING_REPORT_DIR)
set(TESTING_REPORT_DIR "${CMAKE_SOURCE_DIR}/reports/tests")
endif()
set (BUILD_SHARED_LIBS ON)
if (NOT BUILD_TESTING)
set (BUILD_TESTING OFF)
endif()
if (NOT ADD_3DMAXS_EXEC)
set (ADD_3DMAXS_EXEC OFF)
endif()
message(STATUS "==============================================")
if (NOT CMAKE_BUILD_TYPE)
message(STATUS " Build type = multi configuration or undefined")
else()
message(STATUS " Build type = ${CMAKE_BUILD_TYPE}")
endif()
message(STATUS " Build testing = ${BUILD_TESTING}")
message(STATUS " Shared lib = ${BUILD_SHARED_LIBS}")
message(STATUS " Testing report dir = ${TESTING_REPORT_DIR}")
message(STATUS "Installation prefix = ${CMAKE_INSTALL_PREFIX}")
message(STATUS " 3DsMaxs' exec = ${ADD_3DMAXS_EXEC}")
message(STATUS "==============================================")
#----------------------------------------------------------------------------------#
#//////////////////////////////////////////////////////////////////////////////////#
#----------------------------------------------------------------------------------#
# conan.io this must be after options.
include(StsConan)
set(INTERNAL_CONAN_FILE conanfile.txt)
set(INTERNAL_CONAN_DEV_FILE dev-conanfile.txt)
if (EXISTS "${CMAKE_SOURCE_DIR}/${INTERNAL_CONAN_DEV_FILE}")
set(INTERNAL_CONAN_FILE ${INTERNAL_CONAN_DEV_FILE})
message(STATUS "Used Conan dev file = ${INTERNAL_CONAN_FILE}")
message(STATUS "==============================================")
endif()
conan_cmake_run(CONANFILE ${INTERNAL_CONAN_FILE}
BASIC_SETUP CMAKE_TARGETS KEEP_RPATHS
BUILD outdated)
#----------------------------------------------------------------------------------#
#//////////////////////////////////////////////////////////////////////////////////#
#----------------------------------------------------------------------------------#
# help targets
add_custom_target("Clean-Install-Dir"
COMMAND cmake -E remove_directory ${CMAKE_INSTALL_PREFIX}
)
#----------------------------------------------------------------------------------#
#//////////////////////////////////////////////////////////////////////////////////#
#----------------------------------------------------------------------------------#
# Projects
message(STATUS "==============================================")
include(Sts3dmaxTarget)
SETUP_MAX_TERGET(SDK_TARGET "3DsMaxSdk9" 3DMAX_VERSION "9")
SETUP_MAX_TERGET(SDK_TARGET "3DsMaxSdk2008" 3DMAX_VERSION "2008")
SETUP_MAX_TERGET(SDK_TARGET "3DsMaxSdk2009" 3DMAX_VERSION "2009")
SETUP_MAX_TERGET(SDK_TARGET "3DsMaxSdk2010" 3DMAX_VERSION "2010")
SETUP_MAX_TERGET(SDK_TARGET "3DsMaxSdk2011" 3DMAX_VERSION "2011")
SETUP_MAX_TERGET(SDK_TARGET "3DsMaxSdk2012" 3DMAX_VERSION "2012")
SETUP_MAX_TERGET(SDK_TARGET "3DsMaxSdk2013" 3DMAX_VERSION "2013")
SETUP_MAX_TERGET(SDK_TARGET "3DsMaxSdk2014" 3DMAX_VERSION "2014")
SETUP_MAX_TERGET(SDK_TARGET "3DsMaxSdk2015" 3DMAX_VERSION "2015")
SETUP_MAX_TERGET(SDK_TARGET "3DsMaxSdk2016" 3DMAX_VERSION "2016")
SETUP_MAX_TERGET(SDK_TARGET "3DsMaxSdk2017" 3DMAX_VERSION "2017")
SETUP_MAX_TERGET(SDK_TARGET "3DsMaxSdk2018" 3DMAX_VERSION "2018" QT)
SETUP_MAX_TERGET(SDK_TARGET "3DsMaxSdk2019" 3DMAX_VERSION "2019" QT)
if (BUILD_TESTING)
enable_testing()
add_subdirectory(test)
endif ()
message(STATUS "==============================================")
#-----------------------------------------------------------------------#
# //////////////////////////////////////////////////////////////////////#
#-----------------------------------------------------------------------#