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