0030690: Draw Harness - provide XDisplay command for displaying XDE document
[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# EIGEN
637if (CAN_USE_EIGEN)
638 set (USE_EIGEN OFF CACHE BOOL "${USE_EIGEN_DESCR}")
639
640 if (USE_EIGEN)
641 add_definitions (-DHAVE_EIGEN)
642 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/eigen")
643 else()
644 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_EIGEN")
645 OCCT_CHECK_AND_UNSET ("INSTALL_EIGEN")
646 endif()
647else()
648 OCCT_CHECK_AND_UNSET ("USE_EIGEN")
649
650 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_EIGEN")
651 OCCT_CHECK_AND_UNSET ("INSTALL_EIGEN")
652endif()
653
654# Doxygen
655if (BUILD_DOC_Overview)
656 if (NOT DEFINED INSTALL_DOC_Overview)
657 set (INSTALL_DOC_Overview OFF CACHE BOOL "${INSTALL_DOC_Overview_DESCR}")
658 endif()
659
660 if (INSTALL_DOC_Overview)
661 install (DIRECTORY "${CMAKE_BINARY_DIR}/doc/overview" DESTINATION "${INSTALL_DIR_DOC}")
662
663 # create overview.html only for windows
664 if (WIN32 AND "${INSTALL_DIR_LAYOUT}" STREQUAL "Windows")
665 OCCT_INSTALL_FILE_OR_DIR ("dox/resources/overview.html" "${INSTALL_DIR_DOC}/..")
666 endif()
667 endif()
668
669 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/doxygen")
670else()
671 OCCT_CHECK_AND_UNSET ("INSTALL_DOC_Overview")
672
673 OCCT_CHECK_AND_UNSET ("3RDPARTY_DOXYGEN_EXECUTABLE")
674 OCCT_CHECK_AND_UNSET ("3RDPARTY_DOT_EXECUTABLE")
675endif()
676
677# bison
678if (BUILD_YACCLEX)
679 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/bison")
680else()
681 OCCT_CHECK_AND_UNSET ("3RDPARTY_BISON_EXECUTABLE")
682endif()
683
684# flex
685if (BUILD_YACCLEX)
686 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/flex")
687else()
688 OCCT_CHECK_AND_UNSET ("3RDPARTY_FLEX_EXECUTABLE")
689endif()
690
691# check all 3rdparty include paths
692string (REGEX REPLACE ";" " " 3RDPARTY_NOT_INCLUDED "${3RDPARTY_NOT_INCLUDED}")
693if (3RDPARTY_NOT_INCLUDED)
694 message (FATAL_ERROR "Could not find headers of used third-party products: ${3RDPARTY_NOT_INCLUDED}" )
695endif()
696
697if (3RDPARTY_INCLUDE_DIRS)
698 list (REMOVE_DUPLICATES 3RDPARTY_INCLUDE_DIRS)
699 string (REGEX REPLACE ";" "\n\t" 3RDPARTY_INCLUDE_DIRS_WITH_ENDS "${3RDPARTY_INCLUDE_DIRS}")
700 message (STATUS "Info: The directories of 3rdparty headers: \n\t${3RDPARTY_INCLUDE_DIRS_WITH_ENDS}")
701 include_directories (${3RDPARTY_INCLUDE_DIRS})
702endif()
703
704# include <cmake binary folder>/inc
705include_directories (${CMAKE_BINARY_DIR}/${INSTALL_DIR_INCLUDE})
706
707# check all 3rdparty library paths
708string (REGEX REPLACE ";" " " 3RDPARTY_NO_LIBS "${3RDPARTY_NO_LIBS}")
709if (3RDPARTY_NO_LIBS)
710 if (BUILD_SHARED_LIBS)
711 message (SEND_ERROR "Could not find libraries of used third-party products: ${3RDPARTY_NO_LIBS}" )
712 else()
713 message (WARNING "Could not find libraries of used third-party products: ${3RDPARTY_NO_LIBS}" )
714 endif()
715endif()
716if (3RDPARTY_LIBRARY_DIRS)
717 list (REMOVE_DUPLICATES 3RDPARTY_LIBRARY_DIRS)
718 string (REGEX REPLACE ";" "\n\t" 3RDPARTY_LIBRARY_DIRS_WITH_ENDS "${3RDPARTY_LIBRARY_DIRS}")
719 message (STATUS "Info: The directories of 3rdparty libraries: \n\t${3RDPARTY_LIBRARY_DIRS_WITH_ENDS}")
720 link_directories (${3RDPARTY_LIBRARY_DIRS})
721endif()
722
723# report not found 3rdparty dll paths
724string (REGEX REPLACE ";" " " 3RDPARTY_NO_DLLS "${3RDPARTY_NO_DLLS}")
725if (3RDPARTY_NO_DLLS)
726 message (WARNING "Could not find DLLs of used third-party products: ${3RDPARTY_NO_DLLS}" )
727endif()
728
729# build directories
730if (SINGLE_GENERATOR)
731 set (CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/lib${BIN_LETTER}")
732 set (CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bin${BIN_LETTER}")
733 set (CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/lib${BIN_LETTER}")
734 if (WIN32)
735 set (CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bin${BIN_LETTER}")
736 endif()
737endif()
738
739set (CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/lib")
740set (CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bin")
741set (CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/lib")
742
743set (CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELWITHDEBINFO "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/libi")
744set (CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bini")
745set (CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELWITHDEBINFO "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/libi")
746
747set (CMAKE_ARCHIVE_OUTPUT_DIRECTORY_DEBUG "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/libd")
748set (CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bind")
749set (CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/libd")
750
751if (WIN32)
752 set (CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bin")
753 set (CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELWITHDEBINFO "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bini")
754 set (CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG "${CMAKE_BINARY_DIR}/${OS_WITH_BIT}/${COMPILER}/bind")
755endif()
756
757string(TIMESTAMP CURRENT_TIME "%H:%M:%S")
758message (STATUS "\nInfo: \(${CURRENT_TIME}\) Start collecting all OCCT header files into ${CMAKE_BINARY_DIR}/inc ...")
759
760# collect all the headers to <binary dir>/inc folder
761COLLECT_AND_INSTALL_OCCT_HEADER_FILES ("${CMAKE_BINARY_DIR}" "${BUILD_TOOLKITS}" "${CMAKE_SOURCE_DIR}/src" "${INSTALL_DIR_INCLUDE}")
762
763string(TIMESTAMP CURRENT_TIME "%H:%M:%S")
764message (STATUS "Info: \(${CURRENT_TIME}\) End the collecting")
765
766list (FIND BUILD_TOOLKITS DRAWEXE DRAWEXE_INDEX)
767if (${DRAWEXE_INDEX} GREATER -1)
768 OCCT_INSTALL_FILE_OR_DIR ("data/" "${INSTALL_DIR_DATA}")
769 OCCT_INSTALL_FILE_OR_DIR ("samples/tcl" "${INSTALL_DIR_SAMPLES}")
770endif()
771
772if (WIN32)
773 set (SCRIPT_EXT bat)
774else()
775 set (SCRIPT_EXT sh)
776endif()
777
778if (BUILD_Inspector OR BUILD_SAMPLES_QT)
779 # check qt 3rdparty path
780 add_definitions (-DHAVE_QT)
781 OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/qt")
782 message (STATUS "Info: Qt is used by OCCT")
783else()
784 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_QT")
785 OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_TQTMALLOC")
786 OCCT_CHECK_AND_UNSET ("INSTALL_QT")
787endif()
788
789# OCCT tools
790# include the patched or original list of tools
791# list <TOOLNAME>_TOOLKITS is created foreach tool and contains its toolkits
792# list <OCCT_TOOLS> will contain all tools
793if (BUILD_Inspector)
794 add_definitions (-DHAVE_Inspector)
795
796 OCCT_MODULES_AND_TOOLKITS (TOOLS "TOOL_TOOLKITS" OCCT_TOOLS)
797 foreach (OCCT_TOOL ${OCCT_TOOLS})
798 list (APPEND BUILD_TOOL_TOOLKITS ${${OCCT_TOOL}_TOOL_TOOLKITS})
799 endforeach()
800
801 # collect all the headers to <binary dir>/inc/inspector folder
802 string(TIMESTAMP CURRENT_TIME "%H:%M:%S")
803 message (STATUS "\nInfo: \(${CURRENT_TIME}\) Start collecting all OCCT tool header files into ${CMAKE_BINARY_DIR}/inc/inspector ...")
804 COLLECT_AND_INSTALL_OCCT_HEADER_FILES ("${CMAKE_BINARY_DIR}" "${BUILD_TOOL_TOOLKITS}" "${CMAKE_SOURCE_DIR}/tools" "${INSTALL_DIR_INCLUDE}/inspector")
805endif()
806
807# OCCT samples
808# get absolute path from INSTALL_DIR
809set (INSTALL_DIR_ABSOLUTE "${INSTALL_DIR}")
810if(NOT IS_ABSOLUTE "${INSTALL_DIR_ABSOLUTE}")
811 get_filename_component(INSTALL_DIR_ABSOLUTE "${CMAKE_BINARY_DIR}/${INSTALL_DIR}" ABSOLUTE)
812endif()
813
814if (INSTALL_SAMPLES)
815 OCCT_CONFIGURE ("adm/templates/env.samples.${SCRIPT_EXT}.in" "env.samples.${SCRIPT_EXT}")
816 if (WIN32)
817 OCCT_INSTALL_FILE_OR_DIR ("samples/CSharp" "${INSTALL_DIR_SAMPLES}")
818 OCCT_INSTALL_FILE_OR_DIR ("samples/mfc" "${INSTALL_DIR_SAMPLES}")
819
820 if ("${CMAKE_SYSTEM_NAME}" STREQUAL "WindowsStore")
821 OCCT_INSTALL_FILE_OR_DIR ("samples/xaml" "${INSTALL_DIR_SAMPLES}")
822 endif()
823
824 install (FILES "${CMAKE_BINARY_DIR}/env.samples.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SAMPLES}/CSharp" RENAME "env.${SCRIPT_EXT}")
825 install (FILES "${CMAKE_BINARY_DIR}/env.samples.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SAMPLES}/mfc/standard" RENAME "env.${SCRIPT_EXT}")
826 endif()
827
828 OCCT_INSTALL_FILE_OR_DIR ("samples/java" "${INSTALL_DIR_SAMPLES}")
829 OCCT_INSTALL_FILE_OR_DIR ("samples/ocafsamples" "${INSTALL_DIR_SAMPLES}")
830 OCCT_INSTALL_FILE_OR_DIR ("samples/qt" "${INSTALL_DIR_SAMPLES}")
831
832 install (FILES "${CMAKE_BINARY_DIR}/env.samples.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SAMPLES}/qt/FuncDemo" RENAME "env.${SCRIPT_EXT}")
833 install (FILES "${CMAKE_BINARY_DIR}/env.samples.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SAMPLES}/qt/IESample" RENAME "env.${SCRIPT_EXT}")
834 install (FILES "${CMAKE_BINARY_DIR}/env.samples.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SAMPLES}/qt/Tutorial" RENAME "env.${SCRIPT_EXT}")
835endif()
836
837if (INSTALL_TEST_CASES)
838 OCCT_INSTALL_FILE_OR_DIR ("tests/" "${INSTALL_DIR_TESTS}")
839endif()
840
841list (FIND BUILD_TOOLKITS DRAWEXE DRAWEXE_INDEX)
842if (${DRAWEXE_INDEX} GREATER -1)
843 # copy data and samples/tcl folders to install script folder
844 OCCT_INSTALL_FILE_OR_DIR ("data/" "${INSTALL_DIR_DATA}")
845 OCCT_INSTALL_FILE_OR_DIR ("samples/tcl" "${INSTALL_DIR_SAMPLES}")
846
847 # copy draw script to install script folder
848 if (BUILD_PATCH AND EXISTS "${BUILD_PATCH}/adm/templates/draw.${SCRIPT_EXT}")
849 install (FILES "${BUILD_PATCH}/adm/templates/draw.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SCRIPT}"
850 PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_WRITE GROUP_EXECUTE WORLD_READ WORLD_WRITE WORLD_EXECUTE)
851 else()
852 install (FILES "${CMAKE_SOURCE_DIR}/adm/templates/draw.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SCRIPT}"
853 PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_WRITE GROUP_EXECUTE WORLD_READ WORLD_WRITE WORLD_EXECUTE)
854 endif()
855
856 # copy draw script to CMake binary folder
857 OCCT_COPY_FILE_OR_DIR ("adm/templates/draw.${SCRIPT_EXT}" "${CMAKE_BINARY_DIR}")
858endif()
859
860set (SUB_CUSTOM_NAME "custom_${COMPILER}_${COMPILER_BITNESS}.${SCRIPT_EXT}")
861
862if (WIN32)
863 set (ADDITIONAL_CUSTOM_CONTENT "\nif exist \"%~dp0${SUB_CUSTOM_NAME}\" (\n call \"%~dp0${SUB_CUSTOM_NAME}\" %1 %2 %3 \n)")
864else()
865 set (ADDITIONAL_CUSTOM_CONTENT "\nif [ -e \"\${aScriptPath}/${SUB_CUSTOM_NAME}\" ]; then\n source \"\${aScriptPath}/${SUB_CUSTOM_NAME}\" \"\$1\" \"\$2\" \nfi")
866endif()
867
868 # change custom.bat/sh
869if (EXISTS "${INSTALL_DIR}/${INSTALL_DIR_SCRIPT}/custom.${SCRIPT_EXT}")
870 file (READ "${INSTALL_DIR}/${INSTALL_DIR_SCRIPT}/custom.${SCRIPT_EXT}" CUSTOM_CONTENT)
871
872 set (CUSTOM_CONTENT "${CUSTOM_CONTENT} ${ADDITIONAL_CUSTOM_CONTENT}")
873
874 file (WRITE "${INSTALL_DIR}/${INSTALL_DIR_SCRIPT}/custom.${SCRIPT_EXT}" "${CUSTOM_CONTENT}")
875else()
876 OCCT_CONFIGURE_AND_INSTALL ("adm/templates/custom.${SCRIPT_EXT}.main" "custom.${SCRIPT_EXT}" "custom.${SCRIPT_EXT}" "${INSTALL_DIR_SCRIPT}")
877endif()
878
879if (WIN32)
880 set (THIRDPARTY_DIR_REPLACE "%THIRDPARTY_DIR%")
881else()
882 set (THIRDPARTY_DIR_REPLACE "\${THIRDPARTY_DIR}")
883endif()
884get_cmake_property(USED_3RDPARTY_CACHE_VARIABLES VARIABLES)
885string (REGEX MATCHALL "(^|;)USED_3RDPARTY_[^;]+_DIR[^;]*" USED_3RDPARTY_CACHE_VARIABLES "${USED_3RDPARTY_CACHE_VARIABLES}")
886file (TO_CMAKE_PATH "${3RDPARTY_DIR}" 3RDPARTY_DIR)
887foreach (USED_3RDPARTY_CACHE_VARIABLE ${USED_3RDPARTY_CACHE_VARIABLES})
888 file (TO_CMAKE_PATH "${${USED_3RDPARTY_CACHE_VARIABLE}}" ${USED_3RDPARTY_CACHE_VARIABLE})
889 string (REPLACE "${3RDPARTY_DIR}" "${THIRDPARTY_DIR_REPLACE}" ${USED_3RDPARTY_CACHE_VARIABLE} "${${USED_3RDPARTY_CACHE_VARIABLE}}")
890 if (NOT WIN32)
891 string (REGEX REPLACE ";" ":" ${USED_3RDPARTY_CACHE_VARIABLE} "${${USED_3RDPARTY_CACHE_VARIABLE}}")
892 endif()
893endforeach()
894
895# write current custom.bat/sh (for install directory)
896set (SUB_CUSTOM_BUILD_NAME "custom_${COMPILER}_${COMPILER_BITNESS}.install.${SCRIPT_EXT}")
897OCCT_CONFIGURE_AND_INSTALL ("adm/templates/custom.install.${SCRIPT_EXT}.in" "${SUB_CUSTOM_BUILD_NAME}" "${SUB_CUSTOM_NAME}" "${INSTALL_DIR_SCRIPT}")
898
899# write current custom.bat/sh (for build directory)
900OCCT_CONFIGURE ("adm/templates/custom.build.${SCRIPT_EXT}.in" "${SUB_CUSTOM_NAME}")
901
902if (BUILD_SAMPLES_MFC OR BUILD_SAMPLES_QT)
903 OCCT_INSTALL_FILE_OR_DIR ("adm/templates/sample.${SCRIPT_EXT}" "${INSTALL_DIR_SCRIPT}")
904 OCCT_COPY_FILE_OR_DIR ("adm/templates/sample.${SCRIPT_EXT}" "${CMAKE_BINARY_DIR}")
905endif()
906
907if (WIN32)
908 # env script for draw in building environment
909 OCCT_CONFIGURE ("adm/templates/env.${SCRIPT_EXT}.in" "env.${SCRIPT_EXT}")
910 # install env script
911 install (FILES "${CMAKE_BINARY_DIR}/env.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SCRIPT}")
912else()
913 set (SUB_ENV_NAME "env.${SCRIPT_EXT}")
914 set (SUB_ENV_BUILD_NAME "env.install.${SCRIPT_EXT}")
915 # install env script
916 OCCT_CONFIGURE_AND_INSTALL ("adm/templates/env.install.${SCRIPT_EXT}.in" "${SUB_ENV_BUILD_NAME}" "${SUB_ENV_NAME}" "${INSTALL_DIR_SCRIPT}")
917 # env script for draw in building environment
918 OCCT_CONFIGURE ("adm/templates/env.build.${SCRIPT_EXT}.in" "env.${SCRIPT_EXT}")
919endif()
920
921# copy DrawAppliInit from OCCT source to build directory
922if (NOT EXISTS "${CMAKE_BINARY_DIR}/DrawAppliInit")
923 OCCT_COPY_FILE_OR_DIR (DrawAppliInit "${CMAKE_BINARY_DIR}")
924endif()
925
926# RESOURCES
927FILE_TO_LIST ("adm/RESOURCES" RESOURCES)
928foreach(RESOURCE ${RESOURCES})
929 get_filename_component(RESOURCE_FOLDER ${RESOURCE} DIRECTORY)
930 if(NOT "${RESOURCE_FOLDER}" STREQUAL "")
931 get_filename_component(RESOURCE_FOLDER ${RESOURCE_FOLDER} NAME)
932 OCCT_INSTALL_FILE_OR_DIR ("src/${RESOURCE}" "${INSTALL_DIR_RESOURCE}/${RESOURCE_FOLDER}")
933 else()
934 OCCT_INSTALL_FILE_OR_DIR ("src/${RESOURCE}" "${INSTALL_DIR_RESOURCE}")
935 endif()
936endforeach()
937
938if (BUILD_SAMPLES_QT)
939 FILE_TO_LIST ("adm/SAMPLES_RESOURCES" SAMPLES_RESOURCES)
940 foreach(RESOURCE ${SAMPLES_RESOURCES})
941 OCCT_INSTALL_FILE_OR_DIR ("samples/${RESOURCE}" "${INSTALL_DIR_RESOURCE}/samples")
942 #message("Copy Sample resources: samples/${RESOURCE} into ${INSTALL_DIR_RESOURCE}/samples")
943 endforeach()
944endif()
945
946
947# patch installed DrawDefault file if BUILD_SHARED_LIBRARY_NAME_POSTFIX is changed
948if (NOT "${BUILD_SHARED_LIBRARY_NAME_POSTFIX}" STREQUAL "")
949 OCCT_UPDATE_DRAW_DEFAULT_FILE()
950endif()
951
952# include patched toolkit projects or original ones
953foreach (BUILD_TOOLKIT ${BUILD_TOOLKITS})
954 OCCT_ADD_SUBDIRECTORY ("src/${BUILD_TOOLKIT}")
955endforeach()
956
957if (BUILD_DOC_Overview)
958 OCCT_ADD_SUBDIRECTORY (dox)
959endif()
960
961# patch DRAWEXE
962if (MSVC AND 3RDPARTY_DLL_DIRS)
963 list (FIND BUILD_TOOLKITS DRAWEXE DRAWEXE_INDEX)
964 if (${DRAWEXE_INDEX} GREATER -1)
965 list (REMOVE_DUPLICATES 3RDPARTY_DLL_DIRS)
966 set (3RDPARTY_DLL_DIRS_FOR_PATH "")
967
968 foreach (3RDPARTY_DLL_DIR ${3RDPARTY_DLL_DIRS})
969 set (3RDPARTY_DLL_DIRS_FOR_PATH "${3RDPARTY_DLL_DIRS_FOR_PATH};${3RDPARTY_DLL_DIR}")
970 endforeach()
971
972 OCCT_MAKE_COMPILER_BITNESS()
973 set (X_COMPILER_BITNESS "x64")
974 if ("${COMPILER_BITNESS}" STREQUAL "32")
975 set (X_COMPILER_BITNESS "Win32")
976 endif()
977
978 OCCT_CONFIGURE ("adm/templates/DRAWEXE.vcxproj.user.in" "${CMAKE_BINARY_DIR}/src/DRAWEXE/DRAWEXE.vcxproj.user")
979 endif()
980endif()
981
982# include patched toolkit projects or original ones
983if (BUILD_TOOL_TOOLKITS)
984 foreach (BUILD_TOOL_TOOLKIT ${BUILD_TOOL_TOOLKITS})
985 OCCT_ADD_SUBDIRECTORY ("tools/${BUILD_TOOL_TOOLKIT}")
986 endforeach()
987endif()
988
989message (STATUS "Info: \(${CURRENT_TIME}\) OCCT toolkits processed")
990# samples do not support patch usage
991if (BUILD_SAMPLES_MFC OR BUILD_SAMPLES_QT)
992 set (OCCT_ROOT ${CMAKE_SOURCE_DIR})
993endif()
994
995if (BUILD_SAMPLES_MFC)
996 set (MFC_STANDARD_SAMPLES_DIR ${OCCT_ROOT}/samples/mfc/standard)
997 set (COMMON_WINMAIN_FILE ${MFC_STANDARD_SAMPLES_DIR}/Common/Winmain.cpp)
998
999 add_subdirectory(samples/mfc/standard/mfcsample)
1000 add_subdirectory(samples/mfc/standard/01_Geometry)
1001 add_subdirectory(samples/mfc/standard/02_Modeling)
1002 add_subdirectory(samples/mfc/standard/03_Viewer2d)
1003 add_subdirectory(samples/mfc/standard/04_Viewer3d)
1004 add_subdirectory(samples/mfc/standard/05_ImportExport)
1005 add_subdirectory(samples/mfc/standard/06_Ocaf)
1006 add_subdirectory(samples/mfc/standard/07_Triangulation)
1007 add_subdirectory(samples/mfc/standard/08_HLR)
1008 add_subdirectory(samples/mfc/standard/09_Animation)
1009 add_subdirectory(samples/mfc/standard/10_Convert)
1010
1011 message (STATUS "Info: \(${CURRENT_TIME}\) MFC Sample projects added")
1012endif()
1013
1014OCCT_MODULES_AND_TOOLKITS (SAMPLES "SAMPLES_TOOLKITS" OCCT_SAMPLES)
1015
1016if (BUILD_Inspector OR BUILD_SAMPLES_QT)
1017 if (BUILD_SAMPLES_QT)
1018 if (NOT Qt5_FOUND OR "${Qt5Gui_EGL_INCLUDE_DIRS}" STREQUAL "" OR NOT WIN32)
1019 list (REMOVE_ITEM qt_SAMPLES_TOOLKITS AndroidQt)
1020 message (STATUS "Info: AndroidQt sample excluded due to OS is not Windows or Qt is configured without ANGLE")
1021 endif()
1022 else()
1023 list (REMOVE_ITEM OCCT_SAMPLES qt)
1024 message (STATUS "Info: qt samples excluded due to BUILD_SAMPLES_QT is disabled")
1025 endif()
1026
1027 foreach (OCCT_SAMPLE ${OCCT_SAMPLES})
1028 list (APPEND BUILD_SAMPLE_TOOLKITS ${${OCCT_SAMPLE}_SAMPLES_TOOLKITS})
1029
1030 # collect all the headers to <binary dir>/inc/samples folder
1031 string(TIMESTAMP CURRENT_TIME "%H:%M:%S")
1032 message (STATUS "Info: \(${CURRENT_TIME}\) ${OCCT_SAMPLE} Sample projects added")
1033
1034 # include patched toolkit projects or original ones
1035 foreach (BUILD_SAMPLE_TOOLKIT ${${OCCT_SAMPLE}_SAMPLES_TOOLKITS})
1036 OCCT_ADD_SUBDIRECTORY ("samples/${OCCT_SAMPLE}/${BUILD_SAMPLE_TOOLKIT}")
1037 endforeach()
1038 endforeach()
1039endif()
1040
1041if (BUILD_MODULE_UwpSample)
1042 add_subdirectory(samples/xaml)
1043endif()
1044
1045if (BUILD_TOOL_TOOLKITS)
1046 # copy tinspector script to install script folder
1047 if (BUILD_PATCH AND EXISTS "${BUILD_PATCH}/adm/templates/inspector.${SCRIPT_EXT}")
1048 install (FILES "${BUILD_PATCH}/adm/templates/inspector.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SCRIPT}"
1049 PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_WRITE GROUP_EXECUTE WORLD_READ WORLD_WRITE WORLD_EXECUTE)
1050 else()
1051 install (FILES "${CMAKE_SOURCE_DIR}/adm/templates/inspector.${SCRIPT_EXT}" DESTINATION "${INSTALL_DIR_SCRIPT}"
1052 PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_WRITE GROUP_EXECUTE WORLD_READ WORLD_WRITE WORLD_EXECUTE)
1053 endif()
1054
1055 set (OpenCASCADE_BINARY_DIR "${INSTALL_DIR}/${INSTALL_DIR_BIN}")
1056 # patch TInspectorEXE
1057 OCCT_CONFIGURE ("adm/templates/TInspectorEXE.vcxproj.user.in" "${CMAKE_BINARY_DIR}/tools/TInspectorEXE/TInspectorEXE.vcxproj.user")
1058endif()
1059
1060# Prepare variables for configuration of OpenCASCADE cmake config file
1061set (OCCT_MODULES_ENABLED)
1062set (OCCT_LIBRARIES)
1063set (SET_OpenCASCADE_MODULES_TOOLKITS "\n# List of available OpenCASCADE libraries for each module\n")
1064set (OCCT_COMPILE_DEFINITIONS)
1065
1066foreach (OCCT_TOOLKIT ${BUILD_TOOLKITS})
1067 if (TARGET ${OCCT_TOOLKIT})
1068
1069 # get all libraries
1070 get_target_property (${OCCT_TOOLKIT}_TYPE ${OCCT_TOOLKIT} "TYPE")
1071 if ("${${OCCT_TOOLKIT}_TYPE}" STREQUAL "STATIC_LIBRARY" OR "${${OCCT_TOOLKIT}_TYPE}" STREQUAL "SHARED_LIBRARY" )
1072 list (APPEND OCCT_LIBRARIES ${OCCT_TOOLKIT})
1073
1074 # get all modules
1075 get_target_property (${OCCT_TOOLKIT}_MODULE ${OCCT_TOOLKIT} "MODULE")
1076 list (APPEND OCCT_MODULES_ENABLED ${${OCCT_TOOLKIT}_MODULE})
1077 list (APPEND OpenCASCADE_${${OCCT_TOOLKIT}_MODULE}_TOOLKITS ${OCCT_TOOLKIT})
1078
1079 # get compile definitions of target directory
1080 get_directory_property (COMPILE_DEFINITIONS DIRECTORY "${${OCCT_TOOLKIT}_SOURCE_DIR}" "COMPILE_DEFINITIONS")
1081 list (APPEND OCCT_COMPILE_DEFINITIONS ${COMPILE_DEFINITIONS})
1082 endif()
1083 endif()
1084endforeach()
1085list (REMOVE_DUPLICATES OCCT_MODULES_ENABLED)
1086list (REMOVE_DUPLICATES OCCT_COMPILE_DEFINITIONS)
1087
1088# export compile definitions and C/C++ flags for each configuration to OpenCASCADE config files
1089foreach (OCCT_CONFIGURATION ${CMAKE_CONFIGURATION_TYPES})
1090 set (SET_OpenCASCADE_COMPILE_DEFINITIONS)
1091 string (TOUPPER "${OCCT_CONFIGURATION}" OCCT_CONFIGURATION_UPPER)
1092 string (TOLOWER "${OCCT_CONFIGURATION}" OCCT_CONFIGURATION_LOWER)
1093 foreach(COMPILE_DEFINITION ${OCCT_COMPILE_DEFINITIONS})
1094 string(REPLACE "(" "\\(" COMPILE_DEFINITION "${COMPILE_DEFINITION}")
1095 string(REPLACE ")" "\\)" COMPILE_DEFINITION "${COMPILE_DEFINITION}")
1096 set (SET_OpenCASCADE_COMPILE_DEFINITIONS "${SET_OpenCASCADE_COMPILE_DEFINITIONS}set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS $<$<CONFIG:${OCCT_CONFIGURATION}>:${COMPILE_DEFINITION}>)\n")
1097 endforeach()
1098 set (SET_OpenCASCADE_CMAKE_C_FLAGS "${CMAKE_C_FLAGS_${OCCT_CONFIGURATION_UPPER}}")
1099 set (SET_OpenCASCADE_CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS_${OCCT_CONFIGURATION_UPPER}}")
1100 configure_file("${CMAKE_SOURCE_DIR}/adm/templates/OpenCASCADECompileDefinitionsAndFlags.cmake.in" "OpenCASCADECompileDefinitionsAndFlags-${OCCT_CONFIGURATION_LOWER}.cmake" @ONLY)
1101endforeach()
1102# install OpenCASCADE config file with compile definitions and C/C++ flags ONLY for current configuration
1103install (CODE "string (TOLOWER \"\${CMAKE_INSTALL_CONFIG_NAME}\" CMAKE_INSTALL_CONFIG_NAME_LOWER)")
1104install (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)")
1105
1106foreach (OCCT_MODULE ${OCCT_MODULES})
1107 if (BUILD_MODULE_${OCCT_MODULE})
1108 set (SET_OpenCASCADE_MODULES_TOOLKITS "${SET_OpenCASCADE_MODULES_TOOLKITS}set (OpenCASCADE_${OCCT_MODULE}_LIBRARIES ${OpenCASCADE_${OCCT_MODULE}_TOOLKITS})\n")
1109 endif()
1110
1111 # sort enabled modules for correct work of OpenCASCADE config file
1112 list(FIND OCCT_MODULES_ENABLED "${OCCT_MODULE}" OCCT_MODULE_INDEX)
1113 if (NOT ${OCCT_MODULE_INDEX} EQUAL -1)
1114 list (APPEND OCCT_MODULES_ENABLED_SORTED ${OCCT_MODULE})
1115 endif()
1116endforeach()
1117set (OCCT_MODULES_ENABLED ${OCCT_MODULES_ENABLED_SORTED})
1118
1119# Add all targets to the build-tree export set
1120export (TARGETS ${OCCT_LIBRARIES} FILE "${CMAKE_BINARY_DIR}/OpenCASCADETargets.cmake")
1121
1122# Export the package for use from the build-tree
1123# (this registers the build-tree with a global CMake-registry)
1124export(PACKAGE OpenCASCADE)
1125
1126if (CMAKE_BUILD_TYPE)
1127 set (SET_OpenCASCADE_BUILD_TYPE "set (OpenCASCADE_BUILD_TYPE \"${CMAKE_BUILD_TYPE}\")")
1128endif()
1129
1130if (BUILD_SHARED_LIBS)
1131 set (SET_OpenCASCADE_LINKER_FLAGS "set (OpenCASCADE_LINKER_FLAGS \"${CMAKE_SHARED_LINKER_FLAGS}\")")
1132else()
1133 set (SET_OpenCASCADE_LINKER_FLAGS "set (OpenCASCADE_LINKER_FLAGS \"${CMAKE_STATIC_LINKER_FLAGS}\")")
1134endif()
1135
1136if (WIN32)
1137 set (SET_OpenCASCADE_WITH_D3D "set (OpenCASCADE_WITH_D3D ${USE_D3D})")
1138endif()
1139if (APPLE)
1140 set (SET_OpenCASCADE_WITH_GLX "set (OpenCASCADE_WITH_GLX ${USE_GLX})")
1141endif()
1142
1143# Configure and install cmake config file
1144configure_file("${CMAKE_SOURCE_DIR}/adm/templates/OpenCASCADEConfig.cmake.in" "OpenCASCADEConfig.cmake" @ONLY)
1145install(FILES "${CMAKE_BINARY_DIR}/OpenCASCADEConfig.cmake" DESTINATION "${INSTALL_DIR_CMAKE}")
1146
1147# Configure cmake version file
1148include(CMakePackageConfigHelpers)
1149write_basic_package_version_file( ${CMAKE_BINARY_DIR}/OpenCASCADEConfigVersion.cmake
1150 VERSION ${OCC_VERSION_MAJOR}.${OCC_VERSION_MINOR}.${OCC_VERSION_MAINTENANCE}
1151 COMPATIBILITY ExactVersion )
1152
1153# Install cmake version file
1154install (FILES "${CMAKE_BINARY_DIR}/OpenCASCADEConfigVersion.cmake" DESTINATION "${INSTALL_DIR_CMAKE}")
1155
1156# Install the export set for use with the install-tree for each configuration
1157foreach (OCCT_MODULE ${OCCT_MODULES_ENABLED})
1158 install(EXPORT OpenCASCADE${OCCT_MODULE}Targets DESTINATION "${INSTALL_DIR_CMAKE}")
1159endforeach()
1160
1161# Update generated OpenCASCADETargets-*.cmake files
1162# to have correct paths to libraries depending on the configuration
1163OCCT_UPDATE_TARGET_FILE ()
1164
1165message (STATUS "Info: \(${CURRENT_TIME}\) OCCT configuration files prepared")