0028345: Data Exchange - Reading STEP model using STEPCAF crashes
[occt.git] / CMakeLists.txt
... / ...
CommitLineData
1cmake_minimum_required (VERSION 2.8.12 FATAL_ERROR)
2
3set (CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/adm/cmake")
4
5set (CMAKE_SUPPRESS_REGENERATION TRUE)
6
7set (CMAKE_CONFIGURATION_TYPES Release Debug RelWithDebInfo CACHE INTERNAL "" FORCE)
8
9# macro: include patched file if it exists
10macro (OCCT_INCLUDE_CMAKE_FILE BEING_INCLUDED_FILE)
11 if (BUILD_PATCH AND EXISTS "${BUILD_PATCH}/${BEING_INCLUDED_FILE}.cmake")
12 include (${BUILD_PATCH}/${BEING_INCLUDED_FILE}.cmake)
13 else()
14 include (${CMAKE_SOURCE_DIR}/${BEING_INCLUDED_FILE}.cmake)
15 endif()
16endmacro()
17
18# include variable description
19OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/vardescr")
20
21# set type of OCCT libraries
22if (NOT BUILD_LIBRARY_TYPE)
23 set (BUILD_LIBRARY_TYPE "Shared" CACHE STRING "${BUILD_LIBRARY_TYPE_DESCR}" FORCE)
24 SET_PROPERTY(CACHE BUILD_LIBRARY_TYPE PROPERTY STRINGS Shared Static)
25endif()
26
27if ("${BUILD_LIBRARY_TYPE}" STREQUAL "Shared")
28 set (BUILD_SHARED_LIBS ON)
29
30 if (NOT DEFINED BUILD_SHARED_LIBRARY_NAME_POSTFIX)
31 set (BUILD_SHARED_LIBRARY_NAME_POSTFIX "" CACHE STRING "${BUILD_SHARED_LIBRARY_NAME_POSTFIX_DESCR}" FORCE)
32 endif()
33else()
34 unset (BUILD_SHARED_LIBS)
35 unset (BUILD_SHARED_LIBRARY_NAME_POSTFIX)
36endif()
37
38# the name of the project
39project (OCCT)
40
41if (WIN32)
42 add_definitions(-DUNICODE)
43 add_definitions(-D_UNICODE)
44endif()
45
46# include occt macros
47OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/occt_macros")
48
49# Solution folder property
50set_property (GLOBAL PROPERTY USE_FOLDERS ON)
51
52# get current OCCT version
53OCC_VERSION (OCC_VERSION_MAJOR OCC_VERSION_MINOR OCC_VERSION_MAINTENANCE OCC_VERSION_DEVELOPMENT OCC_VERSION_STRING_EXT)
54
55set_property (GLOBAL PROPERTY OCC_VERSION_MAJOR ${OCC_VERSION_MAJOR})
56set_property (GLOBAL PROPERTY OCC_VERSION_MINOR ${OCC_VERSION_MINOR})
57set_property (GLOBAL PROPERTY OCC_VERSION_MAINTENANCE ${OCC_VERSION_MAINTENANCE})
58
59set (INSTALL_TEST_CASES OFF CACHE BOOL "${INSTALL_TEST_CASES_DESCR}")
60
61# Regeneration of OCCT resource files
62set (BUILD_RESOURCES OFF CACHE BOOL "${BUILD_RESOURCES_DESCR}")
63
64# single-configuration generator
65set (SINGLE_GENERATOR OFF)
66if (DEFINED CMAKE_BUILD_TYPE)
67 set (SINGLE_GENERATOR ON)
68endif()
69
70# a single-configuration generator like the Makefile generator defines CMAKE_BUILD_TYPE variable
71# check this variable and set if it's required
72if (DEFINED CMAKE_BUILD_TYPE AND NOT CMAKE_BUILD_TYPE) # single-configuration generator.
73 set (CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel." FORCE)
74endif()
75
76# enable extended messages of many OCCT algorithms
77if (((SINGLE_GENERATOR AND "${CMAKE_BUILD_TYPE}" STREQUAL "Debug") OR NOT SINGLE_GENERATOR) AND (NOT "${CMAKE_SYSTEM_NAME}" STREQUAL "WindowsStore"))
78 if (NOT BUILD_WITH_DEBUG)
79 set (BUILD_WITH_DEBUG OFF CACHE BOOL "${BUILD_WITH_DEBUG_DESCR}")
80 endif()
81else()
82 OCCT_CHECK_AND_UNSET (BUILD_WITH_DEBUG)
83endif()
84
85if (BUILD_WITH_DEBUG)
86 set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS $<$<CONFIG:DEBUG>:OCCT_DEBUG>)
87endif()
88
89# option disabling OCCT exceptions in Release builds (No_Exception)
90if (NOT DEFINED BUILD_RELEASE_DISABLE_EXCEPTIONS)
91 set (BUILD_RELEASE_DISABLE_EXCEPTIONS ON CACHE BOOL "${BUILD_RELEASE_DISABLE_EXCEPTIONS_DESCR}")
92endif()
93
94# option to enable or disable use of precompiled headers
95if (NOT DEFINED BUILD_USE_PCH)
96 set (BUILD_USE_PCH OFF CACHE BOOL "${BUILD_USE_PCH_DESCR}")
97endif()
98
99if (BUILD_USE_PCH)
100
101 # Load Cotire tool for accelerating build procedure
102 include(cotire)
103
104 # Set Cotire to ignore lxx, pxx, gxx
105 set (COTIRE_ADDITIONAL_PREFIX_HEADER_IGNORE_EXTENSIONS "lxx;pxx;gxx" CACHE STRING "Set Cotire to ignore OCCT specific files that can be #included" FORCE)
106
107 # Set priority for inclusion of system headers in PCH to reduce problems
108 # due to incomplete inclusion or wrong order.
109 if (WIN32)
110 # on Windows, assume that SDK (windows.h) is in default location
111 set(ProgramFilesX86 "ProgramFiles(x86)")
112 file(TO_CMAKE_PATH "$ENV{${ProgramFilesX86}}" ProgramFilesX86)
113 set_property (DIRECTORY PROPERTY COTIRE_PREFIX_HEADER_INCLUDE_PRIORITY_PATH "${ProgramFilesX86}")
114 unset(ProgramFilesX86)
115 endif()
116
117endif()
118
119# copy samples to install directory
120set (INSTALL_SAMPLES OFF CACHE BOOL "${INSTALL_SAMPLES_DESCR}")
121
122# install dir of the project
123if (NOT DEFINED INSTALL_DIR)
124 # set default install directory for Windows
125 if (WIN32 AND NOT DEFINED CMAKE_INSTALL_PREFIX)
126 set (CMAKE_INSTALL_PREFIX "C:/opencascade-${OCC_VERSION_STRING_EXT}")
127 endif()
128 set (INSTALL_DIR "${CMAKE_INSTALL_PREFIX}" CACHE PATH "${INSTALL_DIR_DESCR}")
129else()
130 file (TO_CMAKE_PATH "${INSTALL_DIR}" INSTALL_DIR)
131 set (INSTALL_DIR "${INSTALL_DIR}" CACHE PATH "${INSTALL_DIR_DESCR}" FORCE)
132endif()
133
134# choose a variant of the layout of the install paths
135if (NOT INSTALL_DIR_LAYOUT)
136 if (WIN32)
137 set (INSTALL_DIR_LAYOUT "Windows" CACHE STRING "${INSTALL_DIR_LAYOUT_DESCR}" FORCE)
138 else()
139 set (INSTALL_DIR_LAYOUT "Unix" CACHE STRING "${INSTALL_DIR_LAYOUT_DESCR}" FORCE)
140 endif()
141 SET_PROPERTY(CACHE INSTALL_DIR_LAYOUT PROPERTY STRINGS Windows Unix)
142endif()
143
144# check INSTALL_DIR_LAYOUT changes and update INSTALL_DIR_* paths if necessary
145if (NOT DEFINED INSTALL_DIR_LAYOUT_PREV)
146 set (INSTALL_DIR_LAYOUT_PREV "${INSTALL_DIR_LAYOUT}" CACHE INTERNAL "" FORCE)
147elseif (NOT "${INSTALL_DIR_LAYOUT_PREV}" STREQUAL "${INSTALL_DIR_LAYOUT}")
148 set (INSTALL_DIR_LAYOUT_PREV "${INSTALL_DIR_LAYOUT}" CACHE INTERNAL "" FORCE)
149 # The structure of install folder should be reset due to changed layout
150 OCCT_CHECK_AND_UNSET_INSTALL_DIR_SUBDIRS ()
151
152 # Unset INSTALL_DIR_WITH_VERSION on windows
153 if ("${INSTALL_DIR_LAYOUT}" STREQUAL "Windows")
154 OCCT_CHECK_AND_UNSET (INSTALL_DIR_WITH_VERSION)
155 else()
156 if (NOT DEFINED INSTALL_DIR_WITH_VERSION)
157 set (INSTALL_DIR_WITH_VERSION OFF CACHE BOOL "${INSTALL_DIR_WITH_VERSION_DESCR}")
158 endif()
159 endif()
160endif()
161
162# check CMAKE_INSTALL_PREFIX changes and update INSTALL_DIR if necessary
163if (NOT DEFINED CMAKE_INSTALL_PREFIX_PREV)
164 set (CMAKE_INSTALL_PREFIX_PREV "${CMAKE_INSTALL_PREFIX}" CACHE INTERNAL "" FORCE)
165elseif (NOT "${CMAKE_INSTALL_PREFIX_PREV}" STREQUAL "${CMAKE_INSTALL_PREFIX}")
166 # CMAKE_INSTALL_PREFIX has been changed at previous step
167 set (CMAKE_INSTALL_PREFIX_PREV "${CMAKE_INSTALL_PREFIX}" CACHE INTERNAL "" FORCE)
168
169 # INSTALL_DIR is required to be updated
170 set (INSTALL_DIR "${CMAKE_INSTALL_PREFIX}" CACHE PATH "${INSTALL_DIR_DESCR}" FORCE)
171endif()
172
173# check INSTALL_DIR changes and update CMAKE_INSTALL_PREFIX if necessary
174if (NOT DEFINED INSTALL_DIR_PREV)
175 set (INSTALL_DIR_PREV "${INSTALL_DIR}" CACHE INTERNAL "" FORCE)
176elseif (NOT "${INSTALL_DIR_PREV}" STREQUAL "${INSTALL_DIR}")
177 # INSTALL_DIR has been changed at previous step
178 set (INSTALL_DIR_PREV "${INSTALL_DIR}" CACHE INTERNAL "" FORCE)
179
180 # sync CMAKE_INSTALL_PREFIX with INSTALL_DIR
181 set (CMAKE_INSTALL_PREFIX "${INSTALL_DIR}" CACHE INTERNAL "" FORCE)
182
183 # set CMAKE_INSTALL_PREFIX_PREV to avoid the reset of structure of the install folder
184 set (CMAKE_INSTALL_PREFIX_PREV "${INSTALL_DIR}" CACHE INTERNAL "" FORCE)
185endif()
186
187if ("${INSTALL_DIR_LAYOUT}" STREQUAL "Unix")
188 if (NOT DEFINED INSTALL_DIR_WITH_VERSION_PREV)
189 set (INSTALL_DIR_WITH_VERSION_PREV "${INSTALL_DIR_WITH_VERSION}" CACHE INTERNAL "" FORCE)
190 elseif (NOT "${INSTALL_DIR_WITH_VERSION_PREV}" STREQUAL "${INSTALL_DIR_WITH_VERSION}")
191 # INSTALL_DIR_WITH_VERSION has been changed at previous step
192 set (INSTALL_DIR_WITH_VERSION_PREV "${INSTALL_DIR_WITH_VERSION}" CACHE INTERNAL "" FORCE)
193
194 OCCT_CHECK_AND_UNSET_INSTALL_DIR_SUBDIRS ()
195 endif()
196endif()
197
198# hide CMAKE_INSTALL_PREFIX from a user
199set (CMAKE_INSTALL_PREFIX "${INSTALL_DIR}" CACHE INTERNAL "" FORCE)
200
201set (BIN_LETTER "")
202if ("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
203 set (BIN_LETTER "d")
204elseif ("${CMAKE_BUILD_TYPE}" STREQUAL "RelWithDebInfo")
205 set (BIN_LETTER "i")
206endif()
207
208# Get all used variables: OS_WITH_BIT, COMPILER
209OCCT_MAKE_OS_WITH_BITNESS()
210OCCT_MAKE_COMPILER_SHORT_NAME()
211
212# do not define INSTALL_DIR_BIN for win.
213# Leave library structure for win: <prefix>/win64/vc10/bin(d)
214if (NOT DEFINED INSTALL_DIR_BIN)
215 if ("${INSTALL_DIR_LAYOUT}" STREQUAL "Unix")
216 set (INSTALL_DIR_BIN "bin" CACHE PATH "${INSTALL_DIR_BIN_DESCR}")
217 else()
218 set (INSTALL_DIR_BIN "${OS_WITH_BIT}/${COMPILER}/bin" CACHE PATH "${INSTALL_DIR_BIN_DESCR}")
219 endif()
220endif()
221
222# define folder contaning all shell/batch scripts
223if (NOT DEFINED INSTALL_DIR_SCRIPT)
224 if ("${INSTALL_DIR_LAYOUT}" STREQUAL "Unix")
225 set (INSTALL_DIR_SCRIPT "${INSTALL_DIR_BIN}" CACHE PATH "${INSTALL_DIR_SCRIPT_DESCR}")
226 else()
227 set (INSTALL_DIR_SCRIPT "." CACHE PATH "${INSTALL_DIR_SCRIPT_DESCR}")
228 endif()
229endif()
230
231# place the libraries to <prefix>/lib folder for unix and leave old structure for windows
232if (NOT DEFINED INSTALL_DIR_LIB)
233 if ("${INSTALL_DIR_LAYOUT}" STREQUAL "Unix")
234 set (INSTALL_DIR_LIB "lib" CACHE PATH "${INSTALL_DIR_LIB_DESCR}")
235 else()
236 set (INSTALL_DIR_LIB "${OS_WITH_BIT}/${COMPILER}/lib" CACHE PATH "${INSTALL_DIR_LIB_DESCR}")
237 endif()
238endif()
239
240# OCCT headers: <prefix>/inc for windows,
241# <prefix>/include/opencascade-7.0.0 for unix
242if (NOT DEFINED INSTALL_DIR_INCLUDE)
243 if ("${INSTALL_DIR_LAYOUT}" STREQUAL "Unix")
244 set (INSTALL_DIR_INCLUDE "include/opencascade" CACHE PATH "${INSTALL_DIR_INCLUDE_DESCR}")
245 if (INSTALL_DIR_WITH_VERSION)
246 set (INSTALL_DIR_INCLUDE "include/opencascade-${OCC_VERSION_STRING_EXT}" CACHE PATH "${INSTALL_DIR_INCLUDE_DESCR}" FORCE)
247 endif()
248 else()
249 set (INSTALL_DIR_INCLUDE "inc" CACHE PATH "${INSTALL_DIR_INCLUDE_DESCR}")
250 endif()
251endif()
252
253# OCCT resources: <prefix>/src for windows,
254# <prefix>/share/opencascade-7.0.0/resources for unix
255if (NOT DEFINED INSTALL_DIR_RESOURCE)
256 if ("${INSTALL_DIR_LAYOUT}" STREQUAL "Unix")
257 set (INSTALL_DIR_RESOURCE "share/opencascade/resources" CACHE PATH "${INSTALL_DIR_RESOURCE_DESCR}")
258 if (INSTALL_DIR_WITH_VERSION)
259 set (INSTALL_DIR_RESOURCE "share/opencascade-${OCC_VERSION_STRING_EXT}/resources" CACHE PATH "${INSTALL_DIR_RESOURCE_DESCR}" FORCE)
260 endif()
261 else()
262 set (INSTALL_DIR_RESOURCE "src" CACHE PATH "${INSTALL_DIR_RESOURCE_DESCR}")
263 endif()
264endif()
265
266# OCCT data
267if (NOT DEFINED INSTALL_DIR_DATA)
268 if ("${INSTALL_DIR_LAYOUT}" STREQUAL "Unix")
269 set (INSTALL_DIR_DATA "share/opencascade/data" CACHE PATH "${INSTALL_DIR_DATA_DESCR}")
270 if (INSTALL_DIR_WITH_VERSION)
271 set (INSTALL_DIR_DATA "share/opencascade-${OCC_VERSION_STRING_EXT}/data" CACHE PATH "${INSTALL_DIR_DATA_DESCR}" FORCE)
272 endif()
273 else()
274 set (INSTALL_DIR_DATA "data" CACHE PATH "${INSTALL_DIR_DATA_DESCR}")
275 endif()
276endif()
277
278# OCCT samples
279if (NOT DEFINED INSTALL_DIR_SAMPLES)
280 if ("${INSTALL_DIR_LAYOUT}" STREQUAL "Unix")
281 set (INSTALL_DIR_SAMPLES "share/opencascade/samples" CACHE PATH "${INSTALL_DIR_SAMPLES_DESCR}")
282 if (INSTALL_DIR_WITH_VERSION)
283 set (INSTALL_DIR_SAMPLES "share/opencascade-${OCC_VERSION_STRING_EXT}/samples" CACHE PATH "${INSTALL_DIR_SAMPLES_DESCR}" FORCE)
284 endif()
285 else()
286 set (INSTALL_DIR_SAMPLES "samples" CACHE PATH "${INSTALL_DIR_SAMPLES_DESCR}")
287 endif()
288endif()
289
290# OCCT tests
291if (NOT DEFINED INSTALL_DIR_TESTS)
292 if ("${INSTALL_DIR_LAYOUT}" STREQUAL "Unix")
293 set (INSTALL_DIR_TESTS "share/opencascade/tests" CACHE PATH "${INSTALL_DIR_TESTS_DESCR}")
294 if (INSTALL_DIR_WITH_VERSION)
295 set (INSTALL_DIR_TESTS "share/opencascade-${OCC_VERSION_STRING_EXT}/tests" CACHE PATH "${INSTALL_DIR_TESTS_DESCR}" FORCE)
296 endif()
297 else()
298 set (INSTALL_DIR_TESTS "tests" CACHE PATH "${INSTALL_DIR_TESTS_DESCR}")
299 endif()
300endif()
301
302# OCCT doc
303if (NOT DEFINED INSTALL_DIR_DOC)
304 if ("${INSTALL_DIR_LAYOUT}" STREQUAL "Unix")
305 set (INSTALL_DIR_DOC "share/doc/opencascade" CACHE PATH "${INSTALL_DIR_DOC_DESCR}")
306 if (INSTALL_DIR_WITH_VERSION)
307 set (INSTALL_DIR_DOC "share/doc/opencascade-${OCC_VERSION_STRING_EXT}" CACHE PATH "${INSTALL_DIR_DOC_DESCR}" FORCE)
308 endif()
309 else()
310 set (INSTALL_DIR_DOC "doc" CACHE PATH "${INSTALL_DIR_DOC_DESCR}")
311 endif()
312endif()
313
314# define folder contaning CMake configuration files
315if (NOT DEFINED INSTALL_DIR_CMAKE)
316 if ("${INSTALL_DIR_LAYOUT}" STREQUAL "Unix")
317 if (INSTALL_DIR_WITH_VERSION)
318 set (INSTALL_DIR_CMAKE "lib/cmake/opencascade-${OCC_VERSION_STRING_EXT}" CACHE PATH "${INSTALL_DIR_CMAKE_DESCR}")
319 else()
320 set (INSTALL_DIR_CMAKE "lib/cmake/opencascade" CACHE PATH "${INSTALL_DIR_CMAKE_DESCR}")
321 endif()
322 else()
323 set (INSTALL_DIR_CMAKE "cmake" CACHE PATH "${INSTALL_DIR_CMAKE_DESCR}")
324 endif()
325endif()
326
327# include occt macros
328OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/occt_resources")
329
330# install LICENSE_LGPL_21.txt and OCCT_LGPL_EXCEPTION.txt files
331if ("${INSTALL_DIR_LAYOUT}" STREQUAL "Unix")
332 OCCT_INSTALL_FILE_OR_DIR ("LICENSE_LGPL_21.txt" "${INSTALL_DIR_DOC}")
333 OCCT_INSTALL_FILE_OR_DIR ("OCCT_LGPL_EXCEPTION.txt" "${INSTALL_DIR_DOC}")
334else()
335 OCCT_INSTALL_FILE_OR_DIR ("LICENSE_LGPL_21.txt" ".")
336 OCCT_INSTALL_FILE_OR_DIR ("OCCT_LGPL_EXCEPTION.txt" ".")
337endif()
338
339if(APPLE)
340 set (INSTALL_NAME_DIR "" CACHE STRING "install_name library suffix on OS X (e.g. @executable_path/../Frameworks)")
341endif()
342
343# a directory recognized as a 'patch' for OCCT
344set (BUILD_PATCH "" CACHE PATH "${BUILD_PATCH_DESCR}")
345
346# the list of being built toolkits
347set (BUILD_ADDITIONAL_TOOLKITS "" CACHE STRING "${BUILD_ADDITIONAL_TOOLKITS_DESCR}")
348separate_arguments (BUILD_ADDITIONAL_TOOLKITS)
349
350if (MSVC)
351 set (BUILD_SAMPLES_MFC OFF CACHE BOOL "${BUILD_SAMPLES_MFC_DESCR}")
352endif()
353set (BUILD_SAMPLES_QT OFF CACHE BOOL "${BUILD_SAMPLES_QT_DESCR}")
354
355set (BUILD_Inspector OFF CACHE BOOL "${BUILD_Inspector_DESCR}")
356
357# uwp sample
358if (MSVC)
359 if ("${CMAKE_SYSTEM_NAME}" STREQUAL "WindowsStore")
360 set (BUILD_MODULE_UwpSample OFF CACHE BOOL "${BUILD_MODULE_UwpSample_DESCR}")
361 else()
362 unset (BUILD_MODULE_UwpSample)
363 endif()
364endif()
365
366# whether use optional 3rdparty or not
367if (APPLE)
368 set (USE_GLX OFF CACHE BOOL "${USE_GLX_DESCR}")
369endif()
370
371if (WIN32)
372 set (USE_D3D OFF CACHE BOOL "${USE_D3D_DESCR}")
373endif()
374
375# Enable/Disable the floating point exceptions (FPE) during runtime.
376if (NOT BUILD_ENABLE_FPE_SIGNAL_HANDLER)
377 set (BUILD_ENABLE_FPE_SIGNAL_HANDLER OFF CACHE BOOL "${BUILD_ENABLE_FPE_SIGNAL_HANDLER_DESCR}" FORCE)
378endif()
379
380if (BUILD_ENABLE_FPE_SIGNAL_HANDLER)
381 set (BUILD_ENABLE_FPE_SIGNAL_HANDLER 1)
382else()
383 set (BUILD_ENABLE_FPE_SIGNAL_HANDLER 0)
384endif()
385
386# include the patched or original list of modules
387# list <MODULENAME>_TOOLKITS is created foreach module and contains its toolkits
388# list <OCCT_MODULES> will contain all modules
389OCCT_MODULES_AND_TOOLKITS (MODULES "TOOLKITS" OCCT_MODULES)
390
391foreach (OCCT_MODULE ${OCCT_MODULES})
392 BUILD_MODULE (${OCCT_MODULE})
393endforeach()
394
395if (ANDROID AND BUILD_MODULE_Draw)
396 message (STATUS "Info. Draw module is turned off due to it is not supported on Android")
397 set (BUILD_MODULE_Draw OFF CACHE BOOL "${BUILD_MODULE_Draw_DESCR}" FORCE)
398endif()
399if ("${CMAKE_SYSTEM_NAME}" STREQUAL "WindowsStore" AND BUILD_MODULE_Draw)
400 message (STATUS "Info. Draw module is turned off due to it is not supported on UWP")
401 set (BUILD_MODULE_Draw OFF CACHE BOOL "${BUILD_MODULE_Draw_DESCR}" FORCE)
402endif()
403
404# Overview
405if (NOT DEFINED BUILD_DOC_Overview)
406 set (DO_ONLY_CHECK_FOR_DOXYGEN ON)
407 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/doxygen")
408 set (DO_ONLY_CHECK_FOR_DOXYGEN OFF)
409
410 if (CAN_DOXYGEN_BE_USED)
411 message (STATUS "Info. Overview building is turned on")
412 endif()
413
414 set (BUILD_DOC_Overview ${CAN_DOXYGEN_BE_USED} CACHE BOOL "${BUILD_DOC_Overview_DESCR}")
415endif()
416
417if (NOT USE_D3D)
418 list (REMOVE_ITEM Visualization_TOOLKITS TKD3DHost)
419endif()
420
421# accumulate used toolkits (first level) in BUILD_TOOLKITS variable
422list (APPEND BUILD_TOOLKITS ${BUILD_ADDITIONAL_TOOLKITS})
423
424foreach (OCCT_MODULE ${OCCT_MODULES})
425 if (BUILD_MODULE_${OCCT_MODULE})
426 list (APPEND BUILD_TOOLKITS ${${OCCT_MODULE}_TOOLKITS})
427 endif()
428endforeach()
429
430# DRAWEXE excluded when library build is static
431if (NOT BUILD_SHARED_LIBS)
432 list (REMOVE_ITEM BUILD_TOOLKITS DRAWEXE)
433 message (STATUS "Info: DRAWEXE is not included due to ${BUILD_LIBRARY_TYPE} build library type")
434endif()
435
436# accumulate all used toolkits
437list (REMOVE_DUPLICATES BUILD_TOOLKITS)
438set (RAW_BUILD_TOOLKITS)
439foreach (BUILD_TOOLKIT ${BUILD_TOOLKITS})
440 OCCT_TOOLKIT_FULL_DEP (${BUILD_TOOLKIT} TOOLKIT_FULL_DEPS)
441 list (APPEND RAW_BUILD_TOOLKITS ${BUILD_TOOLKIT} ${TOOLKIT_FULL_DEPS})
442endforeach()
443
444list (REMOVE_DUPLICATES RAW_BUILD_TOOLKITS)
445set (BUILD_TOOLKITS ${RAW_BUILD_TOOLKITS})
446
447# include the patched or original list of definitions and flags
448OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/occt_defs_flags")
449
450OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/3rdparty_macro")
451
452# search for TKIVtk and TKIVtkDraw in BUILD_TOOLKITS
453list (FIND BUILD_TOOLKITS TKIVtk CAN_USE_VTK)
454if (CAN_USE_VTK EQUAL -1)
455 list (FIND BUILD_TOOLKITS TKIVtkDraw CAN_USE_VTK)
456endif()
457
458if (NOT CAN_USE_VTK EQUAL -1)
459 if (NOT DEFINED USE_VTK)
460 set (USE_VTK OFF CACHE BOOL "${USE_VTK_DESCR}")
461 endif()
462else()
463 OCCT_CHECK_AND_UNSET (USE_VTK)
464endif()
465
466# Rebuild *.yacc and *.lex files that are contained by TKMath toolkit
467list (FIND BUILD_TOOLKITS TKMath CAN_REBUILD_PDC_FOR_TKMATH)
468list (FIND BUILD_TOOLKITS StepFile CAN_REBUILD_PDC_FOR_STEPFILE)
469
470if (NOT ${CAN_REBUILD_PDC_FOR_TKMATH} EQUAL -1 OR NOT ${CAN_REBUILD_PDC_FOR_STEPFILE} EQUAL -1)
471 set (BUILD_YACCLEX OFF CACHE BOOL "${BUILD_YACCLEX_DESCR}")
472else()
473 OCCT_CHECK_AND_UNSET (BUILD_YACCLEX)
474endif()
475
476if (NOT DEFINED 3RDPARTY_DIR)
477 set (3RDPARTY_DIR "" CACHE PATH ${3RDPARTY_DIR_DESCR})
478 get_filename_component (3RDPARTY_DIR "${3RDPARTY_DIR}" ABSOLUTE)
479else()
480 file (TO_CMAKE_PATH "${3RDPARTY_DIR}" 3RDPARTY_DIR)
481 set (3RDPARTY_DIR "${3RDPARTY_DIR}" CACHE PATH "${3RDPARTY_DIR_DESCR}" FORCE)
482endif()
483
484# search for CSF variable in EXTERNLIB of each being used toolkit
485OCCT_IS_PRODUCT_REQUIRED (CSF_FreeImagePlus CAN_USE_FREEIMAGE)
486OCCT_IS_PRODUCT_REQUIRED (CSF_TclLibs USE_TCL)
487OCCT_IS_PRODUCT_REQUIRED (CSF_FREETYPE USE_FREETYPE)
488OCCT_IS_PRODUCT_REQUIRED (CSF_OpenGlLibs CAN_USE_GLES2)
489OCCT_IS_PRODUCT_REQUIRED (CSF_TBB CAN_USE_TBB)
490OCCT_IS_PRODUCT_REQUIRED (CSF_EIGEN CAN_USE_EIGEN)
491
492# define CSF variable
493OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/occt_csf")
494
495if (USE_TCL)
496 message (STATUS "Info: TCL is used by OCCT")
497 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/tcl")
498
499 message (STATUS "Info: TK is used by OCCT")
500 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/tk")
501else()
502 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_TCL")
503 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_TK")
504
505 OCCT_CHECK_AND_UNSET ("INSTALL_TCL")
506 OCCT_CHECK_AND_UNSET ("INSTALL_TK")
507endif()
508
509if (USE_FREETYPE)
510 message (STATUS "Info: Freetype is used by OCCT")
511 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/freetype")
512else()
513 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_FREETYPE")
514 OCCT_CHECK_AND_UNSET ("3RDPARTY_FREETYPE_INCLUDE_DIR_freetype2")
515 OCCT_CHECK_AND_UNSET ("3RDPARTY_FREETYPE_INCLUDE_DIR_ft2build")
516 OCCT_CHECK_AND_UNSET ("INSTALL_FREETYPE")
517endif()
518
519# VTK
520if (USE_VTK)
521 add_definitions (-DHAVE_VTK)
522 set (OCCT_VTK_USED_TARGETS "" CACHE INTERNAL "" FORCE)
523 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/vtk")
524else()
525 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_VTK")
526
527 if (NOT CAN_USE_VTK EQUAL -1)
528 message (STATUS "Info: TKIVtk and TKIVtkDraw toolkits excluded due to VTK usage is disabled")
529
530 list (REMOVE_ITEM BUILD_TOOLKITS TKIVtk)
531 list (REMOVE_ITEM BUILD_TOOLKITS TKIVtkDraw)
532 endif()
533endif()
534
535# D3D
536if (USE_D3D)
537 add_definitions (-DHAVE_D3D)
538 #if(MSVC_VERSION LESS 1700)
539 #OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/d3d")
540 #endif()
541endif()
542
543# GLX
544if (USE_GLX)
545 add_definitions (-DMACOSX_USE_GLX)
546 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/glx")
547endif()
548
549# FREEIMAGE
550
551if (CAN_USE_FREEIMAGE)
552 set (USE_FREEIMAGE OFF CACHE BOOL "${USE_FREEIMAGE_DESCR}")
553
554 if (USE_FREEIMAGE)
555 add_definitions (-DHAVE_FREEIMAGE)
556 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/freeimage")
557 else()
558 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_FREEIMAGE")
559 OCCT_CHECK_AND_UNSET ("INSTALL_FREEIMAGE")
560 endif()
561else()
562 OCCT_CHECK_AND_UNSET ("USE_FREEIMAGE")
563
564 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_FREEIMAGE")
565 OCCT_CHECK_AND_UNSET ("INSTALL_FREEIMAGE")
566endif()
567
568# FFmpeg
569# search for CSF_FFmpeg variable in EXTERNLIB of each being used toolkit
570OCCT_IS_PRODUCT_REQUIRED (CSF_FFmpeg CAN_USE_FFMPEG)
571
572if (CAN_USE_FFMPEG)
573 set (USE_FFMPEG OFF CACHE BOOL "${USE_FFMPEG_DESCR}")
574
575 if (USE_FFMPEG)
576 add_definitions (-DHAVE_FFMPEG)
577 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/ffmpeg")
578 else()
579 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_FFMPEG")
580 OCCT_CHECK_AND_UNSET ("INSTALL_FFMPEG")
581 endif()
582else()
583 OCCT_CHECK_AND_UNSET ("USE_FFMPEG")
584
585 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_FFMPEG")
586 OCCT_CHECK_AND_UNSET ("INSTALL_FFMPEG")
587endif()
588
589# OpenGL ES 2.0
590if (CAN_USE_GLES2)
591 if ("${CMAKE_SYSTEM_NAME}" STREQUAL "WindowsStore")
592 set (USE_GLES2 ON)
593 else()
594 set (USE_GLES2 OFF CACHE BOOL "${USE_GLES2_DESCR}")
595 endif()
596
597 if (USE_GLES2)
598 add_definitions (-DHAVE_GLES2)
599 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/egl")
600 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/gles2")
601 else()
602 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_EGL")
603 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_GLES2")
604 OCCT_CHECK_AND_UNSET ("INSTALL_EGL")
605 OCCT_CHECK_AND_UNSET ("INSTALL_GLES2")
606 endif()
607else()
608 OCCT_CHECK_AND_UNSET ("USE_GLES2")
609
610 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_EGL")
611 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_GLES2")
612 OCCT_CHECK_AND_UNSET ("INSTALL_EGL")
613 OCCT_CHECK_AND_UNSET ("INSTALL_GLES2")
614endif()
615
616# TBB
617if (NOT DEFINED ANDROID AND CAN_USE_TBB)
618 set (USE_TBB OFF CACHE BOOL "${USE_TBB_DESCR}")
619
620 if (USE_TBB)
621 add_definitions (-DHAVE_TBB)
622 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/tbb")
623 else()
624 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_TBB")
625 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_TBBMALLOC")
626 OCCT_CHECK_AND_UNSET ("INSTALL_TBB")
627 endif()
628else()
629 OCCT_CHECK_AND_UNSET ("USE_TBB")
630
631 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_TBB")
632 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_TBBMALLOC")
633 OCCT_CHECK_AND_UNSET ("INSTALL_TBB")
634endif()
635
636# RapidJSON
637# search for CSF_RapidJSON variable in EXTERNLIB of each being used toolkit
638OCCT_IS_PRODUCT_REQUIRED (CSF_RapidJSON CAN_USE_RAPIDJSON)
639if (CAN_USE_RAPIDJSON)
640 set (USE_RAPIDJSON OFF CACHE BOOL "${USE_RAPIDJSON_DESCR}")
641
642 if (USE_RAPIDJSON)
643 add_definitions (-DHAVE_RAPIDJSON)
644 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/rapidjson")
645 else()
646 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_RAPIDJSON")
647 OCCT_CHECK_AND_UNSET ("INSTALL_RAPIDJSON")
648 endif()
649else()
650 OCCT_CHECK_AND_UNSET ("USE_RAPIDJSON")
651
652 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_RAPIDJSON")
653 OCCT_CHECK_AND_UNSET ("INSTALL_RAPIDJSON")
654endif()
655
656# EIGEN
657if (CAN_USE_EIGEN)
658 set (USE_EIGEN OFF CACHE BOOL "${USE_EIGEN_DESCR}")
659
660 if (USE_EIGEN)
661 add_definitions (-DHAVE_EIGEN)
662 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/eigen")
663 else()
664 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_EIGEN")
665 OCCT_CHECK_AND_UNSET ("INSTALL_EIGEN")
666 endif()
667else()
668 OCCT_CHECK_AND_UNSET ("USE_EIGEN")
669
670 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_EIGEN")
671 OCCT_CHECK_AND_UNSET ("INSTALL_EIGEN")
672endif()
673
674# Doxygen
675if (BUILD_DOC_Overview)
676 if (NOT DEFINED INSTALL_DOC_Overview)
677 set (INSTALL_DOC_Overview OFF CACHE BOOL "${INSTALL_DOC_Overview_DESCR}")
678 endif()
679
680 if (INSTALL_DOC_Overview)
681 install (DIRECTORY "${CMAKE_BINARY_DIR}/doc/overview" DESTINATION "${INSTALL_DIR_DOC}")
682
683 # create overview.html only for windows
684 if (WIN32 AND "${INSTALL_DIR_LAYOUT}" STREQUAL "Windows")
685 OCCT_INSTALL_FILE_OR_DIR ("dox/resources/overview.html" "${INSTALL_DIR_DOC}/..")
686 endif()
687 endif()
688
689 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/doxygen")
690else()
691 OCCT_CHECK_AND_UNSET ("INSTALL_DOC_Overview")
692
693 OCCT_CHECK_AND_UNSET ("3RDPARTY_DOXYGEN_EXECUTABLE")
694 OCCT_CHECK_AND_UNSET ("3RDPARTY_DOT_EXECUTABLE")
695endif()
696
697# bison
698if (BUILD_YACCLEX)
699 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/bison")
700else()
701 OCCT_CHECK_AND_UNSET ("3RDPARTY_BISON_EXECUTABLE")
702endif()
703
704# flex
705if (BUILD_YACCLEX)
706 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/flex")
707else()
708 OCCT_CHECK_AND_UNSET ("3RDPARTY_FLEX_EXECUTABLE")
709endif()
710
711# qt for inspector and samples
712if (BUILD_Inspector OR BUILD_SAMPLES_QT)
713 # check qt 3rdparty path
714 add_definitions (-DHAVE_QT)
715 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/qt")
716 message (STATUS "Info: Qt is used by OCCT")
717else()
718 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_QT")
719 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_TQTMALLOC")
720 OCCT_CHECK_AND_UNSET ("INSTALL_QT")
721endif()
722
723# check all 3rdparty include paths
724string (REGEX REPLACE ";" " " 3RDPARTY_NOT_INCLUDED "${3RDPARTY_NOT_INCLUDED}")
725if (3RDPARTY_NOT_INCLUDED)
726 message (FATAL_ERROR "Could not find headers of used third-party products: ${3RDPARTY_NOT_INCLUDED}" )
727endif()
728
729if (3RDPARTY_INCLUDE_DIRS)
730 list (REMOVE_DUPLICATES 3RDPARTY_INCLUDE_DIRS)
731 string (REGEX REPLACE ";" "\n\t" 3RDPARTY_INCLUDE_DIRS_WITH_ENDS "${3RDPARTY_INCLUDE_DIRS}")
732 message (STATUS "Info: The directories of 3rdparty headers: \n\t${3RDPARTY_INCLUDE_DIRS_WITH_ENDS}")
733 include_directories (${3RDPARTY_INCLUDE_DIRS})
734endif()
735
736# include <cmake binary folder>/inc
737include_directories (${CMAKE_BINARY_DIR}/${INSTALL_DIR_INCLUDE})
738
739# check all 3rdparty library paths
740string (REGEX REPLACE ";" " " 3RDPARTY_NO_LIBS "${3RDPARTY_NO_LIBS}")
741if (3RDPARTY_NO_LIBS)
742 if (BUILD_SHARED_LIBS)
743 message (SEND_ERROR "Could not find libraries of used third-party products: ${3RDPARTY_NO_LIBS}" )
744 else()
745 message (WARNING "Could not find libraries of used third-party products: ${3RDPARTY_NO_LIBS}" )
746 endif()
747endif()
748if (3RDPARTY_LIBRARY_DIRS)
749 list (REMOVE_DUPLICATES 3RDPARTY_LIBRARY_DIRS)
750 string (REGEX REPLACE ";" "\n\t" 3RDPARTY_LIBRARY_DIRS_WITH_ENDS "${3RDPARTY_LIBRARY_DIRS}")
751 message (STATUS "Info: The directories of 3rdparty libraries: \n\t${3RDPARTY_LIBRARY_DIRS_WITH_ENDS}")
752 link_directories (${3RDPARTY_LIBRARY_DIRS})
753endif()
754
755# report not found 3rdparty dll paths
756string (REGEX REPLACE ";" " " 3RDPARTY_NO_DLLS "${3RDPARTY_NO_DLLS}")
757if (3RDPARTY_NO_DLLS)
758 message (WARNING "Could not find DLLs of used third-party products: ${3RDPARTY_NO_DLLS}" )
759endif()
760
761# build directories
762if (SINGLE_GENERATOR)
763 set (CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/lib${BIN_LETTER}")
764 set (CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bin${BIN_LETTER}")
765 set (CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/lib${BIN_LETTER}")
766 if (WIN32)
767 set (CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bin${BIN_LETTER}")
768 endif()
769endif()
770
771set (CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/lib")
772set (CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bin")
773set (CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/lib")
774
775set (CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELWITHDEBINFO "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/libi")
776set (CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bini")
777set (CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELWITHDEBINFO "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/libi")
778
779set (CMAKE_ARCHIVE_OUTPUT_DIRECTORY_DEBUG "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/libd")
780set (CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bind")
781set (CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/libd")
782
783if (WIN32)
784 set (CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bin")
785 set (CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELWITHDEBINFO "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bini")
786 set (CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bind")
787endif()
788
789string(TIMESTAMP CURRENT_TIME "%H:%M:%S")
790message (STATUS "\nInfo: \(${CURRENT_TIME}\) Start collecting all OCCT header files into ${CMAKE_BINARY_DIR}/inc ...")
791
792# collect all the headers to <binary dir>/inc folder
793COLLECT_AND_INSTALL_OCCT_HEADER_FILES ("${CMAKE_BINARY_DIR}" "${BUILD_TOOLKITS}" "${CMAKE_SOURCE_DIR}/src" "${INSTALL_DIR_INCLUDE}")
794
795string(TIMESTAMP CURRENT_TIME "%H:%M:%S")
796message (STATUS "Info: \(${CURRENT_TIME}\) End the collecting")
797
798list (FIND BUILD_TOOLKITS DRAWEXE DRAWEXE_INDEX)
799if (${DRAWEXE_INDEX} GREATER -1)
800 OCCT_INSTALL_FILE_OR_DIR ("data/" "${INSTALL_DIR_DATA}")
801 OCCT_INSTALL_FILE_OR_DIR ("samples/tcl" "${INSTALL_DIR_SAMPLES}")
802endif()
803
804if (WIN32)
805 set (SCRIPT_EXT bat)
806else()
807 set (SCRIPT_EXT sh)
808endif()
809
810# OCCT tools
811# include the patched or original list of tools
812# list <TOOLNAME>_TOOLKITS is created foreach tool and contains its toolkits
813# list <OCCT_TOOLS> will contain all tools
814if (BUILD_Inspector)
815 add_definitions (-DHAVE_Inspector)
816
817 OCCT_MODULES_AND_TOOLKITS (TOOLS "TOOL_TOOLKITS" OCCT_TOOLS)
818 foreach (OCCT_TOOL ${OCCT_TOOLS})
819 list (APPEND BUILD_TOOL_TOOLKITS ${${OCCT_TOOL}_TOOL_TOOLKITS})
820 endforeach()
821
822 # collect all the headers to <binary dir>/inc/inspector folder
823 string(TIMESTAMP CURRENT_TIME "%H:%M:%S")
824 message (STATUS "\nInfo: \(${CURRENT_TIME}\) Start collecting all OCCT tool header files into ${CMAKE_BINARY_DIR}/inc/inspector ...")
825 COLLECT_AND_INSTALL_OCCT_HEADER_FILES ("${CMAKE_BINARY_DIR}" "${BUILD_TOOL_TOOLKITS}" "${CMAKE_SOURCE_DIR}/tools" "${INSTALL_DIR_INCLUDE}/inspector")
826endif()
827
828# OCCT samples
829# get absolute path from INSTALL_DIR
830set (INSTALL_DIR_ABSOLUTE "${INSTALL_DIR}")
831if(NOT IS_ABSOLUTE "${INSTALL_DIR_ABSOLUTE}")
832 get_filename_component(INSTALL_DIR_ABSOLUTE "${CMAKE_BINARY_DIR}/${INSTALL_DIR}" ABSOLUTE)
833endif()
834
835if (INSTALL_SAMPLES)
836 OCCT_CONFIGURE ("adm/templates/env.samples.${SCRIPT_EXT}.in" "env.samples.${SCRIPT_EXT}")
837 if (WIN32)
838 OCCT_INSTALL_FILE_OR_DIR ("samples/CSharp" "${INSTALL_DIR_SAMPLES}")
839 OCCT_INSTALL_FILE_OR_DIR ("samples/mfc" "${INSTALL_DIR_SAMPLES}")
840
841 if ("${CMAKE_SYSTEM_NAME}" STREQUAL "WindowsStore")
842 OCCT_INSTALL_FILE_OR_DIR ("samples/xaml" "${INSTALL_DIR_SAMPLES}")
843 endif()
844
845 install (FILES "${CMAKE_BINARY_DIR}/env.samples.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SAMPLES}/CSharp" RENAME "env.${SCRIPT_EXT}")
846 install (FILES "${CMAKE_BINARY_DIR}/env.samples.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SAMPLES}/mfc/standard" RENAME "env.${SCRIPT_EXT}")
847 endif()
848
849 OCCT_INSTALL_FILE_OR_DIR ("samples/java" "${INSTALL_DIR_SAMPLES}")
850 OCCT_INSTALL_FILE_OR_DIR ("samples/ocafsamples" "${INSTALL_DIR_SAMPLES}")
851 OCCT_INSTALL_FILE_OR_DIR ("samples/qt" "${INSTALL_DIR_SAMPLES}")
852
853 install (FILES "${CMAKE_BINARY_DIR}/env.samples.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SAMPLES}/qt/FuncDemo" RENAME "env.${SCRIPT_EXT}")
854 install (FILES "${CMAKE_BINARY_DIR}/env.samples.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SAMPLES}/qt/IESample" RENAME "env.${SCRIPT_EXT}")
855 install (FILES "${CMAKE_BINARY_DIR}/env.samples.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SAMPLES}/qt/Tutorial" RENAME "env.${SCRIPT_EXT}")
856endif()
857
858if (INSTALL_TEST_CASES)
859 OCCT_INSTALL_FILE_OR_DIR ("tests/" "${INSTALL_DIR_TESTS}")
860endif()
861
862list (FIND BUILD_TOOLKITS DRAWEXE DRAWEXE_INDEX)
863if (${DRAWEXE_INDEX} GREATER -1)
864 # copy data and samples/tcl folders to install script folder
865 OCCT_INSTALL_FILE_OR_DIR ("data/" "${INSTALL_DIR_DATA}")
866 OCCT_INSTALL_FILE_OR_DIR ("samples/tcl" "${INSTALL_DIR_SAMPLES}")
867
868 # copy draw script to install script folder
869 if (BUILD_PATCH AND EXISTS "${BUILD_PATCH}/adm/templates/draw.${SCRIPT_EXT}")
870 install (FILES "${BUILD_PATCH}/adm/templates/draw.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SCRIPT}"
871 PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_WRITE GROUP_EXECUTE WORLD_READ WORLD_WRITE WORLD_EXECUTE)
872 else()
873 install (FILES "${CMAKE_SOURCE_DIR}/adm/templates/draw.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SCRIPT}"
874 PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_WRITE GROUP_EXECUTE WORLD_READ WORLD_WRITE WORLD_EXECUTE)
875 endif()
876
877 # copy draw script to CMake binary folder
878 OCCT_COPY_FILE_OR_DIR ("adm/templates/draw.${SCRIPT_EXT}" "${CMAKE_BINARY_DIR}")
879endif()
880
881set (SUB_CUSTOM_NAME "custom_${COMPILER}_${COMPILER_BITNESS}.${SCRIPT_EXT}")
882
883if (WIN32)
884 set (ADDITIONAL_CUSTOM_CONTENT "\nif exist \"%~dp0${SUB_CUSTOM_NAME}\" (\n call \"%~dp0${SUB_CUSTOM_NAME}\" %1 %2 %3 \n)")
885else()
886 set (ADDITIONAL_CUSTOM_CONTENT "\nif [ -e \"\${aScriptPath}/${SUB_CUSTOM_NAME}\" ]; then\n source \"\${aScriptPath}/${SUB_CUSTOM_NAME}\" \"\$1\" \"\$2\" \nfi")
887endif()
888
889 # change custom.bat/sh
890if (EXISTS "${INSTALL_DIR}/${INSTALL_DIR_SCRIPT}/custom.${SCRIPT_EXT}")
891 file (READ "${INSTALL_DIR}/${INSTALL_DIR_SCRIPT}/custom.${SCRIPT_EXT}" CUSTOM_CONTENT)
892
893 set (CUSTOM_CONTENT "${CUSTOM_CONTENT} ${ADDITIONAL_CUSTOM_CONTENT}")
894
895 file (WRITE "${INSTALL_DIR}/${INSTALL_DIR_SCRIPT}/custom.${SCRIPT_EXT}" "${CUSTOM_CONTENT}")
896else()
897 OCCT_CONFIGURE_AND_INSTALL ("adm/templates/custom.${SCRIPT_EXT}.main" "custom.${SCRIPT_EXT}" "custom.${SCRIPT_EXT}" "${INSTALL_DIR_SCRIPT}")
898endif()
899
900if (WIN32)
901 set (THIRDPARTY_DIR_REPLACE "%THIRDPARTY_DIR%")
902else()
903 set (THIRDPARTY_DIR_REPLACE "\${THIRDPARTY_DIR}")
904endif()
905get_cmake_property(USED_3RDPARTY_CACHE_VARIABLES VARIABLES)
906string (REGEX MATCHALL "(^|;)USED_3RDPARTY_[^;]+_DIR[^;]*" USED_3RDPARTY_CACHE_VARIABLES "${USED_3RDPARTY_CACHE_VARIABLES}")
907file (TO_CMAKE_PATH "${3RDPARTY_DIR}" 3RDPARTY_DIR)
908foreach (USED_3RDPARTY_CACHE_VARIABLE ${USED_3RDPARTY_CACHE_VARIABLES})
909 file (TO_CMAKE_PATH "${${USED_3RDPARTY_CACHE_VARIABLE}}" ${USED_3RDPARTY_CACHE_VARIABLE})
910 string (REPLACE "${3RDPARTY_DIR}" "${THIRDPARTY_DIR_REPLACE}" ${USED_3RDPARTY_CACHE_VARIABLE} "${${USED_3RDPARTY_CACHE_VARIABLE}}")
911 if (NOT WIN32)
912 string (REGEX REPLACE ";" ":" ${USED_3RDPARTY_CACHE_VARIABLE} "${${USED_3RDPARTY_CACHE_VARIABLE}}")
913 endif()
914endforeach()
915
916# write current custom.bat/sh (for install directory)
917set (SUB_CUSTOM_BUILD_NAME "custom_${COMPILER}_${COMPILER_BITNESS}.install.${SCRIPT_EXT}")
918OCCT_CONFIGURE_AND_INSTALL ("adm/templates/custom.install.${SCRIPT_EXT}.in" "${SUB_CUSTOM_BUILD_NAME}" "${SUB_CUSTOM_NAME}" "${INSTALL_DIR_SCRIPT}")
919
920# write current custom.bat/sh (for build directory)
921OCCT_CONFIGURE ("adm/templates/custom.build.${SCRIPT_EXT}.in" "${SUB_CUSTOM_NAME}")
922
923if (BUILD_SAMPLES_MFC OR BUILD_SAMPLES_QT)
924 OCCT_INSTALL_FILE_OR_DIR ("adm/templates/sample.${SCRIPT_EXT}" "${INSTALL_DIR_SCRIPT}")
925 OCCT_COPY_FILE_OR_DIR ("adm/templates/sample.${SCRIPT_EXT}" "${CMAKE_BINARY_DIR}")
926endif()
927
928if (WIN32)
929 # env script for draw in building environment
930 OCCT_CONFIGURE ("adm/templates/env.${SCRIPT_EXT}.in" "env.${SCRIPT_EXT}")
931 # install env script
932 install (FILES "${CMAKE_BINARY_DIR}/env.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SCRIPT}")
933else()
934 set (SUB_ENV_NAME "env.${SCRIPT_EXT}")
935 set (SUB_ENV_BUILD_NAME "env.install.${SCRIPT_EXT}")
936 # install env script
937 OCCT_CONFIGURE_AND_INSTALL ("adm/templates/env.install.${SCRIPT_EXT}.in" "${SUB_ENV_BUILD_NAME}" "${SUB_ENV_NAME}" "${INSTALL_DIR_SCRIPT}")
938 # env script for draw in building environment
939 OCCT_CONFIGURE ("adm/templates/env.build.${SCRIPT_EXT}.in" "env.${SCRIPT_EXT}")
940endif()
941
942# copy DrawAppliInit from OCCT source to build directory
943if (NOT EXISTS "${CMAKE_BINARY_DIR}/DrawAppliInit")
944 OCCT_COPY_FILE_OR_DIR (DrawAppliInit "${CMAKE_BINARY_DIR}")
945endif()
946
947# RESOURCES
948FILE_TO_LIST ("adm/RESOURCES" RESOURCES)
949foreach(RESOURCE ${RESOURCES})
950 get_filename_component(RESOURCE_FOLDER ${RESOURCE} DIRECTORY)
951 if(NOT "${RESOURCE_FOLDER}" STREQUAL "")
952 get_filename_component(RESOURCE_FOLDER ${RESOURCE_FOLDER} NAME)
953 OCCT_INSTALL_FILE_OR_DIR ("src/${RESOURCE}" "${INSTALL_DIR_RESOURCE}/${RESOURCE_FOLDER}")
954 else()
955 OCCT_INSTALL_FILE_OR_DIR ("src/${RESOURCE}" "${INSTALL_DIR_RESOURCE}")
956 endif()
957endforeach()
958
959if (BUILD_SAMPLES_QT)
960 FILE_TO_LIST ("adm/SAMPLES_RESOURCES" SAMPLES_RESOURCES)
961 foreach(RESOURCE ${SAMPLES_RESOURCES})
962 OCCT_INSTALL_FILE_OR_DIR ("samples/${RESOURCE}" "${INSTALL_DIR_RESOURCE}/samples")
963 #message("Copy Sample resources: samples/${RESOURCE} into ${INSTALL_DIR_RESOURCE}/samples")
964 endforeach()
965endif()
966
967
968# patch installed DrawDefault file if BUILD_SHARED_LIBRARY_NAME_POSTFIX is changed
969if (NOT "${BUILD_SHARED_LIBRARY_NAME_POSTFIX}" STREQUAL "")
970 OCCT_UPDATE_DRAW_DEFAULT_FILE()
971endif()
972
973# include patched toolkit projects or original ones
974foreach (BUILD_TOOLKIT ${BUILD_TOOLKITS})
975 OCCT_ADD_SUBDIRECTORY ("src/${BUILD_TOOLKIT}")
976endforeach()
977
978if (BUILD_DOC_Overview)
979 OCCT_ADD_SUBDIRECTORY (dox)
980endif()
981
982# patch DRAWEXE
983if (MSVC AND 3RDPARTY_DLL_DIRS)
984 list (FIND BUILD_TOOLKITS DRAWEXE DRAWEXE_INDEX)
985 if (${DRAWEXE_INDEX} GREATER -1)
986 list (REMOVE_DUPLICATES 3RDPARTY_DLL_DIRS)
987 set (3RDPARTY_DLL_DIRS_FOR_PATH "")
988
989 foreach (3RDPARTY_DLL_DIR ${3RDPARTY_DLL_DIRS})
990 set (3RDPARTY_DLL_DIRS_FOR_PATH "${3RDPARTY_DLL_DIRS_FOR_PATH};${3RDPARTY_DLL_DIR}")
991 endforeach()
992
993 OCCT_MAKE_COMPILER_BITNESS()
994 set (X_COMPILER_BITNESS "x64")
995 if ("${COMPILER_BITNESS}" STREQUAL "32")
996 set (X_COMPILER_BITNESS "Win32")
997 endif()
998
999 OCCT_CONFIGURE ("adm/templates/DRAWEXE.vcxproj.user.in" "${CMAKE_BINARY_DIR}/src/DRAWEXE/DRAWEXE.vcxproj.user")
1000 endif()
1001endif()
1002
1003# include patched toolkit projects or original ones
1004if (BUILD_TOOL_TOOLKITS)
1005 foreach (BUILD_TOOL_TOOLKIT ${BUILD_TOOL_TOOLKITS})
1006 OCCT_ADD_SUBDIRECTORY ("tools/${BUILD_TOOL_TOOLKIT}")
1007 endforeach()
1008endif()
1009
1010message (STATUS "Info: \(${CURRENT_TIME}\) OCCT toolkits processed")
1011# samples do not support patch usage
1012if (BUILD_SAMPLES_MFC OR BUILD_SAMPLES_QT)
1013 set (OCCT_ROOT ${CMAKE_SOURCE_DIR})
1014endif()
1015
1016if (BUILD_SAMPLES_MFC)
1017 set (MFC_STANDARD_SAMPLES_DIR ${OCCT_ROOT}/samples/mfc/standard)
1018 set (COMMON_WINMAIN_FILE ${MFC_STANDARD_SAMPLES_DIR}/Common/Winmain.cpp)
1019
1020 add_subdirectory(samples/mfc/standard/mfcsample)
1021 add_subdirectory(samples/mfc/standard/01_Geometry)
1022 add_subdirectory(samples/mfc/standard/02_Modeling)
1023 add_subdirectory(samples/mfc/standard/03_Viewer2d)
1024 add_subdirectory(samples/mfc/standard/04_Viewer3d)
1025 add_subdirectory(samples/mfc/standard/05_ImportExport)
1026 add_subdirectory(samples/mfc/standard/06_Ocaf)
1027 add_subdirectory(samples/mfc/standard/07_Triangulation)
1028 add_subdirectory(samples/mfc/standard/08_HLR)
1029 add_subdirectory(samples/mfc/standard/09_Animation)
1030 add_subdirectory(samples/mfc/standard/10_Convert)
1031
1032 message (STATUS "Info: \(${CURRENT_TIME}\) MFC Sample projects added")
1033endif()
1034
1035OCCT_MODULES_AND_TOOLKITS (SAMPLES "SAMPLES_TOOLKITS" OCCT_SAMPLES)
1036
1037if (BUILD_Inspector OR BUILD_SAMPLES_QT)
1038 if (BUILD_SAMPLES_QT)
1039 if (NOT Qt5_FOUND OR "${Qt5Gui_EGL_INCLUDE_DIRS}" STREQUAL "" OR NOT WIN32)
1040 list (REMOVE_ITEM qt_SAMPLES_TOOLKITS AndroidQt)
1041 message (STATUS "Info: AndroidQt sample excluded due to OS is not Windows or Qt is configured without ANGLE")
1042 endif()
1043 else()
1044 list (REMOVE_ITEM OCCT_SAMPLES qt)
1045 message (STATUS "Info: qt samples excluded due to BUILD_SAMPLES_QT is disabled")
1046 endif()
1047
1048 foreach (OCCT_SAMPLE ${OCCT_SAMPLES})
1049 list (APPEND BUILD_SAMPLE_TOOLKITS ${${OCCT_SAMPLE}_SAMPLES_TOOLKITS})
1050
1051 # collect all the headers to <binary dir>/inc/samples folder
1052 string(TIMESTAMP CURRENT_TIME "%H:%M:%S")
1053 message (STATUS "Info: \(${CURRENT_TIME}\) ${OCCT_SAMPLE} Sample projects added")
1054
1055 # include patched toolkit projects or original ones
1056 foreach (BUILD_SAMPLE_TOOLKIT ${${OCCT_SAMPLE}_SAMPLES_TOOLKITS})
1057 OCCT_ADD_SUBDIRECTORY ("samples/${OCCT_SAMPLE}/${BUILD_SAMPLE_TOOLKIT}")
1058 endforeach()
1059 endforeach()
1060endif()
1061
1062if (BUILD_MODULE_UwpSample)
1063 add_subdirectory(samples/xaml)
1064endif()
1065
1066if (BUILD_TOOL_TOOLKITS)
1067 # copy tinspector script to install script folder
1068 if (BUILD_PATCH AND EXISTS "${BUILD_PATCH}/adm/templates/inspector.${SCRIPT_EXT}")
1069 install (FILES "${BUILD_PATCH}/adm/templates/inspector.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SCRIPT}"
1070 PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_WRITE GROUP_EXECUTE WORLD_READ WORLD_WRITE WORLD_EXECUTE)
1071 else()
1072 install (FILES "${CMAKE_SOURCE_DIR}/adm/templates/inspector.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SCRIPT}"
1073 PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_WRITE GROUP_EXECUTE WORLD_READ WORLD_WRITE WORLD_EXECUTE)
1074 endif()
1075
1076 set (OpenCASCADE_BINARY_DIR "${INSTALL_DIR}/${INSTALL_DIR_BIN}")
1077 # patch TInspectorEXE
1078 OCCT_CONFIGURE ("adm/templates/TInspectorEXE.vcxproj.user.in" "${CMAKE_BINARY_DIR}/tools/TInspectorEXE/TInspectorEXE.vcxproj.user")
1079endif()
1080
1081# Prepare variables for configuration of OpenCASCADE cmake config file
1082set (OCCT_MODULES_ENABLED)
1083set (OCCT_LIBRARIES)
1084set (SET_OpenCASCADE_MODULES_TOOLKITS "\n# List of available OpenCASCADE libraries for each module\n")
1085set (OCCT_COMPILE_DEFINITIONS)
1086
1087foreach (OCCT_TOOLKIT ${BUILD_TOOLKITS})
1088 if (TARGET ${OCCT_TOOLKIT})
1089
1090 # get all libraries
1091 get_target_property (${OCCT_TOOLKIT}_TYPE ${OCCT_TOOLKIT} "TYPE")
1092 if ("${${OCCT_TOOLKIT}_TYPE}" STREQUAL "STATIC_LIBRARY" OR "${${OCCT_TOOLKIT}_TYPE}" STREQUAL "SHARED_LIBRARY" )
1093 list (APPEND OCCT_LIBRARIES ${OCCT_TOOLKIT})
1094
1095 # get all modules
1096 get_target_property (${OCCT_TOOLKIT}_MODULE ${OCCT_TOOLKIT} "MODULE")
1097 list (APPEND OCCT_MODULES_ENABLED ${${OCCT_TOOLKIT}_MODULE})
1098 list (APPEND OpenCASCADE_${${OCCT_TOOLKIT}_MODULE}_TOOLKITS ${OCCT_TOOLKIT})
1099
1100 # get compile definitions of target directory
1101 get_directory_property (COMPILE_DEFINITIONS DIRECTORY "${${OCCT_TOOLKIT}_SOURCE_DIR}" "COMPILE_DEFINITIONS")
1102 list (APPEND OCCT_COMPILE_DEFINITIONS ${COMPILE_DEFINITIONS})
1103 endif()
1104 endif()
1105endforeach()
1106list (REMOVE_DUPLICATES OCCT_MODULES_ENABLED)
1107list (REMOVE_DUPLICATES OCCT_COMPILE_DEFINITIONS)
1108
1109# export compile definitions and C/C++ flags for each configuration to OpenCASCADE config files
1110foreach (OCCT_CONFIGURATION ${CMAKE_CONFIGURATION_TYPES})
1111 set (SET_OpenCASCADE_COMPILE_DEFINITIONS)
1112 string (TOUPPER "${OCCT_CONFIGURATION}" OCCT_CONFIGURATION_UPPER)
1113 string (TOLOWER "${OCCT_CONFIGURATION}" OCCT_CONFIGURATION_LOWER)
1114 foreach(COMPILE_DEFINITION ${OCCT_COMPILE_DEFINITIONS})
1115 string(REPLACE "(" "\\(" COMPILE_DEFINITION "${COMPILE_DEFINITION}")
1116 string(REPLACE ")" "\\)" COMPILE_DEFINITION "${COMPILE_DEFINITION}")
1117 set (SET_OpenCASCADE_COMPILE_DEFINITIONS "${SET_OpenCASCADE_COMPILE_DEFINITIONS}set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS $<$<CONFIG:${OCCT_CONFIGURATION}>:${COMPILE_DEFINITION}>)\n")
1118 endforeach()
1119 set (SET_OpenCASCADE_CMAKE_C_FLAGS "${CMAKE_C_FLAGS_${OCCT_CONFIGURATION_UPPER}}")
1120 set (SET_OpenCASCADE_CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS_${OCCT_CONFIGURATION_UPPER}}")
1121 configure_file("${CMAKE_SOURCE_DIR}/adm/templates/OpenCASCADECompileDefinitionsAndFlags.cmake.in" "OpenCASCADECompileDefinitionsAndFlags-${OCCT_CONFIGURATION_LOWER}.cmake" @ONLY)
1122endforeach()
1123# install OpenCASCADE config file with compile definitions and C/C++ flags ONLY for current configuration
1124install (CODE "string (TOLOWER \"\${CMAKE_INSTALL_CONFIG_NAME}\" CMAKE_INSTALL_CONFIG_NAME_LOWER)")
1125install (CODE "configure_file(\"${CMAKE_BINARY_DIR}/OpenCASCADECompileDefinitionsAndFlags-\${CMAKE_INSTALL_CONFIG_NAME_LOWER}.cmake\" \"${INSTALL_DIR}/${INSTALL_DIR_CMAKE}/OpenCASCADECompileDefinitionsAndFlags-\${CMAKE_INSTALL_CONFIG_NAME_LOWER}.cmake\" COPYONLY)")
1126
1127foreach (OCCT_MODULE ${OCCT_MODULES})
1128 if (BUILD_MODULE_${OCCT_MODULE})
1129 set (SET_OpenCASCADE_MODULES_TOOLKITS "${SET_OpenCASCADE_MODULES_TOOLKITS}set (OpenCASCADE_${OCCT_MODULE}_LIBRARIES ${OpenCASCADE_${OCCT_MODULE}_TOOLKITS})\n")
1130 endif()
1131
1132 # sort enabled modules for correct work of OpenCASCADE config file
1133 list(FIND OCCT_MODULES_ENABLED "${OCCT_MODULE}" OCCT_MODULE_INDEX)
1134 if (NOT ${OCCT_MODULE_INDEX} EQUAL -1)
1135 list (APPEND OCCT_MODULES_ENABLED_SORTED ${OCCT_MODULE})
1136 endif()
1137endforeach()
1138set (OCCT_MODULES_ENABLED ${OCCT_MODULES_ENABLED_SORTED})
1139
1140# Add all targets to the build-tree export set
1141export (TARGETS ${OCCT_LIBRARIES} FILE "${CMAKE_BINARY_DIR}/OpenCASCADETargets.cmake")
1142
1143# Export the package for use from the build-tree
1144# (this registers the build-tree with a global CMake-registry)
1145export(PACKAGE OpenCASCADE)
1146
1147if (CMAKE_BUILD_TYPE)
1148 set (SET_OpenCASCADE_BUILD_TYPE "set (OpenCASCADE_BUILD_TYPE \"${CMAKE_BUILD_TYPE}\")")
1149endif()
1150
1151if (BUILD_SHARED_LIBS)
1152 set (SET_OpenCASCADE_LINKER_FLAGS "set (OpenCASCADE_LINKER_FLAGS \"${CMAKE_SHARED_LINKER_FLAGS}\")")
1153else()
1154 set (SET_OpenCASCADE_LINKER_FLAGS "set (OpenCASCADE_LINKER_FLAGS \"${CMAKE_STATIC_LINKER_FLAGS}\")")
1155endif()
1156
1157if (WIN32)
1158 set (SET_OpenCASCADE_WITH_D3D "set (OpenCASCADE_WITH_D3D ${USE_D3D})")
1159endif()
1160if (APPLE)
1161 set (SET_OpenCASCADE_WITH_GLX "set (OpenCASCADE_WITH_GLX ${USE_GLX})")
1162endif()
1163
1164# Configure and install cmake config file
1165configure_file("${CMAKE_SOURCE_DIR}/adm/templates/OpenCASCADEConfig.cmake.in" "OpenCASCADEConfig.cmake" @ONLY)
1166install(FILES "${CMAKE_BINARY_DIR}/OpenCASCADEConfig.cmake" DESTINATION "${INSTALL_DIR_CMAKE}")
1167
1168# Configure cmake version file
1169include(CMakePackageConfigHelpers)
1170write_basic_package_version_file( ${CMAKE_BINARY_DIR}/OpenCASCADEConfigVersion.cmake
1171 VERSION ${OCC_VERSION_MAJOR}.${OCC_VERSION_MINOR}.${OCC_VERSION_MAINTENANCE}
1172 COMPATIBILITY ExactVersion )
1173
1174# Install cmake version file
1175install (FILES "${CMAKE_BINARY_DIR}/OpenCASCADEConfigVersion.cmake" DESTINATION "${INSTALL_DIR_CMAKE}")
1176
1177# Install the export set for use with the install-tree for each configuration
1178foreach (OCCT_MODULE ${OCCT_MODULES_ENABLED})
1179 install(EXPORT OpenCASCADE${OCCT_MODULE}Targets DESTINATION "${INSTALL_DIR_CMAKE}")
1180endforeach()
1181
1182# Update generated OpenCASCADETargets-*.cmake files
1183# to have correct paths to libraries depending on the configuration
1184OCCT_UPDATE_TARGET_FILE ()
1185
1186message (STATUS "Info: \(${CURRENT_TIME}\) OCCT configuration files prepared")