From 16ed73bec51ce5d66fea1dc5f8754b3d0f6ba8ce Mon Sep 17 00:00:00 2001 From: kgv Date: Fri, 16 Oct 2020 15:45:43 +0300 Subject: [PATCH] 0031790: Configuration, CMake - add optional OpenVR dependency --- CMakeLists.txt | 20 ++++++++++++++++++++ adm/cmake/3rdparty_macro.cmake | 18 +++++++++++++----- adm/cmake/occt_csf.cmake | 7 +++++++ adm/cmake/openvr.cmake | 5 +++++ adm/cmake/vardescr.cmake | 4 ++++ adm/templates/custom.build.bat.in | 1 + adm/templates/custom.install.bat.in | 3 ++- adm/templates/env.bat.in | 1 + dox/introduction/introduction.md | 15 ++++++++++++--- 9 files changed, 65 insertions(+), 9 deletions(-) create mode 100644 adm/cmake/openvr.cmake diff --git a/CMakeLists.txt b/CMakeLists.txt index a68900ddf9..100d61339d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -565,6 +565,26 @@ else() OCCT_CHECK_AND_UNSET ("INSTALL_FREEIMAGE") endif() +# OpenVR +# search for CSF_OpenVR variable in EXTERNLIB of each being used toolkit +OCCT_IS_PRODUCT_REQUIRED (CSF_OpenVR CAN_USE_OPENVR) +if (CAN_USE_OPENVR) + set (USE_OPENVR OFF CACHE BOOL "${USE_OPENVR_DESCR}") + + if (USE_OPENVR) + add_definitions (-DHAVE_OPENVR) + OCCT_INCLUDE_CMAKE_FILE ("adm/cmake/openvr") + else() + OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_OPENVR") + OCCT_CHECK_AND_UNSET ("INSTALL_OPENVR") + endif() +else() + OCCT_CHECK_AND_UNSET ("USE_OPENVR") + + OCCT_CHECK_AND_UNSET_GROUP ("3RDPARTY_OPENVR") + OCCT_CHECK_AND_UNSET ("INSTALL_OPENVR") +endif() + # FFmpeg # search for CSF_FFmpeg variable in EXTERNLIB of each being used toolkit OCCT_IS_PRODUCT_REQUIRED (CSF_FFmpeg CAN_USE_FFMPEG) diff --git a/adm/cmake/3rdparty_macro.cmake b/adm/cmake/3rdparty_macro.cmake index 7794a73eba..a3621f7621 100644 --- a/adm/cmake/3rdparty_macro.cmake +++ b/adm/cmake/3rdparty_macro.cmake @@ -97,12 +97,12 @@ macro (THIRDPARTY_PRODUCT PRODUCT_NAME HEADER_NAME LIBRARY_CSF_NAME LIBRARY_NAME if (3RDPARTY_${PRODUCT_NAME}_DIR AND EXISTS "${3RDPARTY_${PRODUCT_NAME}_DIR}") find_path (3RDPARTY_${PRODUCT_NAME}_INCLUDE_DIR NAMES ${HEADER_NAME} PATHS ${3RDPARTY_${PRODUCT_NAME}_DIR} - PATH_SUFFIXES include inc + PATH_SUFFIXES include inc headers CMAKE_FIND_ROOT_PATH_BOTH NO_DEFAULT_PATH) else() find_path (3RDPARTY_${PRODUCT_NAME}_INCLUDE_DIR NAMES ${HEADER_NAME} - PATH_SUFFIXES include inc + PATH_SUFFIXES include inc headers CMAKE_FIND_ROOT_PATH_BOTH) endif() endif() @@ -125,10 +125,14 @@ macro (THIRDPARTY_PRODUCT PRODUCT_NAME HEADER_NAME LIBRARY_CSF_NAME LIBRARY_NAME set (${PRODUCT_NAME}_PATH_SUFFIXES lib) if (WIN32) set (${PRODUCT_NAME}_PATH_SUFFIXES ${${PRODUCT_NAME}_PATH_SUFFIXES} win${COMPILER_BITNESS}/${COMPILER}/lib) + set (${PRODUCT_NAME}_PATH_SUFFIXES ${${PRODUCT_NAME}_PATH_SUFFIXES} lib/win${COMPILER_BITNESS}) endif() if (ANDROID) set (${PRODUCT_NAME}_PATH_SUFFIXES ${${PRODUCT_NAME}_PATH_SUFFIXES} libs/${ANDROID_ABI}) endif() + if(UNIX AND NOT APPLE AND NOT ANDROID) + set (${PRODUCT_NAME}_PATH_SUFFIXES ${${PRODUCT_NAME}_PATH_SUFFIXES} lib/linux${COMPILER_BITNESS}) + endif() # set 3RDPARTY_${PRODUCT_NAME}_LIBRARY as notfound, otherwise find_library can't assign a new value to 3RDPARTY_${PRODUCT_NAME}_LIBRARY set (3RDPARTY_${PRODUCT_NAME}_LIBRARY_${LIBRARY_NAME_SUFFIX} "3RDPARTY_${PRODUCT_NAME}_LIBRARY_${LIBRARY_NAME_SUFFIX}-NOTFOUND" CACHE FILEPATH "The path to ${PRODUCT_NAME} library \"${LIBRARY_NAME}\"" FORCE) @@ -184,7 +188,7 @@ macro (THIRDPARTY_PRODUCT PRODUCT_NAME HEADER_NAME LIBRARY_CSF_NAME LIBRARY_NAME if ((3RDPARTY_${PRODUCT_NAME}_DIR AND EXISTS "${3RDPARTY_${PRODUCT_NAME}_DIR}") OR (3RDPARTY_${PRODUCT_NAME}_DLL_DIR_${LIBRARY_NAME} AND EXISTS "${3RDPARTY_${PRODUCT_NAME}_DLL_DIR_${LIBRARY_NAME}}")) find_library (3RDPARTY_${PRODUCT_NAME}_DLL_${LIBRARY_NAME_SUFFIX} NAMES ${LIBRARY_NAME} PATHS "${3RDPARTY_${PRODUCT_NAME}_DLL_DIR_${LIBRARY_NAME}}" "${3RDPARTY_${PRODUCT_NAME}_DIR}" - PATH_SUFFIXES bin win${COMPILER_BITNESS}/${COMPILER}/bin + PATH_SUFFIXES bin win${COMPILER_BITNESS}/${COMPILER}/bin bin/win${COMPILER_BITNESS} NO_DEFAULT_PATH) if (3RDPARTY_${PRODUCT_NAME}_DLL_${LIBRARY_NAME_SUFFIX} STREQUAL "3RDPARTY_${PRODUCT_NAME}_DLL_${LIBRARY_NAME_SUFFIX}-NOTFOUND") # find directory recursive @@ -238,6 +242,7 @@ macro (THIRDPARTY_PRODUCT PRODUCT_NAME HEADER_NAME LIBRARY_CSF_NAME LIBRARY_NAME if (INSTALL_${PRODUCT_NAME}) OCCT_MAKE_OS_WITH_BITNESS() OCCT_MAKE_COMPILER_SHORT_NAME() + set (USED_3RDPARTY_${PRODUCT_NAME}_DIR "") if (WIN32) if (SINGLE_GENERATOR) @@ -280,14 +285,17 @@ macro (THIRDPARTY_PRODUCT PRODUCT_NAME HEADER_NAME LIBRARY_CSF_NAME LIBRARY_NAME endif() else() # the library directory for using by the executable - foreach (LIBRARY_NAME ${${LIBRARY_CSF_NAME}}) - string (REPLACE "." "" LIBRARY_NAME_SUFFIX "${LIBRARY_NAME}") + foreach (LIBRARY_NAME ${${LIBRARY_CSF_NAME}}) + string (REPLACE "." "" LIBRARY_NAME_SUFFIX "${LIBRARY_NAME}") if (WIN32) set (USED_3RDPARTY_${PRODUCT_NAME}_DIRS "${3RDPARTY_${PRODUCT_NAME}_DLL_DIR_${LIBRARY_NAME_SUFFIX}};${USED_3RDPARTY_${PRODUCT_NAME}_DIRS}") else() set (USED_3RDPARTY_${PRODUCT_NAME}_DIRS "${3RDPARTY_${PRODUCT_NAME}_LIBRARY_DIR_${LIBRARY_NAME_SUFFIX}}:${USED_3RDPARTY_${PRODUCT_NAME}_DIRS}") endif() endforeach() + if (WIN32) + set (USED_3RDPARTY_${PRODUCT_NAME}_DIR ${3RDPARTY_${PRODUCT_NAME}_DLL_DIR_${LIBRARY_NAME_SUFFIX}}) + endif() endif() mark_as_advanced (3RDPARTY_${PRODUCT_NAME}_LIBRARY_${LIBRARY_NAME_SUFFIX} 3RDPARTY_${PRODUCT_NAME}_DLL_${LIBRARY_NAME_SUFFIX}) diff --git a/adm/cmake/occt_csf.cmake b/adm/cmake/occt_csf.cmake index 353f6cf208..46d22ff4e3 100644 --- a/adm/cmake/occt_csf.cmake +++ b/adm/cmake/occt_csf.cmake @@ -42,6 +42,13 @@ else() endif() endif() +# OpenVR +if (USE_OPENVR) + set (CSF_OpenVR "openvr_api") +else() + set (CSF_OpenVR) +endif() + # TCL/TK if (USE_TCL) if (WIN32) diff --git a/adm/cmake/openvr.cmake b/adm/cmake/openvr.cmake new file mode 100644 index 0000000000..b61fbe11ac --- /dev/null +++ b/adm/cmake/openvr.cmake @@ -0,0 +1,5 @@ +# OpenVR SDK +# OpenVR is an API and runtime that allows access to VR hardware from multiple vendors without requiring that applications have specific knowledge of the hardware they are targeting. +# https://github.com/ValveSoftware/openvr + +THIRDPARTY_PRODUCT("OPENVR" "openvr.h" "CSF_OpenVR" "") diff --git a/adm/cmake/vardescr.cmake b/adm/cmake/vardescr.cmake index 845fc28a00..91b124ffca 100644 --- a/adm/cmake/vardescr.cmake +++ b/adm/cmake/vardescr.cmake @@ -89,6 +89,7 @@ INSTALL_MESSAGE (INSTALL_TEST_CASES "non-regression OCCT test scripts") INSTALL_MESSAGE (INSTALL_DOC_Overview "OCCT overview documentation (HTML format)") INSTALL_MESSAGE (INSTALL_FFMPEG "FFmpeg binaries") INSTALL_MESSAGE (INSTALL_FREEIMAGE "FreeImage binaries") +INSTALL_MESSAGE (INSTALL_OPENVR "OpenVR binaries") INSTALL_MESSAGE (INSTALL_EIGEN "EIGEN header files") INSTALL_MESSAGE (INSTALL_EGL "EGL binaries") INSTALL_MESSAGE (INSTALL_GLES2 "OpenGL ES 2.0 binaries") @@ -162,6 +163,9 @@ set (USE_FREEIMAGE_DESCR "Indicates whether Freeimage product should be used in OCCT visualization module for support of popular graphics image formats (PNG, BMP etc)") +set (USE_OPENVR_DESCR +"Indicates whether OpenVR should be used in OCCT visualization module for VR support") + set (USE_RAPIDJSON_DESCR "Indicates whether RapidJSON product should be used in OCCT DataExchange module for support of JSON-based formats like glTF") diff --git a/adm/templates/custom.build.bat.in b/adm/templates/custom.build.bat.in index a08d82cddf..c03a7fc0d4 100644 --- a/adm/templates/custom.build.bat.in +++ b/adm/templates/custom.build.bat.in @@ -14,6 +14,7 @@ if /I "%VCVER%" == "@COMPILER@" ( set "TBB_DIR=@3RDPARTY_TBB_DLL_DIR@" set "VTK_DIR=@3RDPARTY_VTK_DLL_DIR@" set "FFMPEG_DIR=@3RDPARTY_FFMPEG_DLL_DIR@" + set "OPENVR_DIR=@3RDPARTY_OPENVR_DLL_DIRS@" if not "@3RDPARTY_QT_DIR@" == "" ( set "QTDIR=@3RDPARTY_QT_DIR@" diff --git a/adm/templates/custom.install.bat.in b/adm/templates/custom.install.bat.in index c057ff6636..041152bdda 100644 --- a/adm/templates/custom.install.bat.in +++ b/adm/templates/custom.install.bat.in @@ -10,12 +10,13 @@ if /I "%VCVER%" == "@COMPILER@" ( set "TCL_DIR=@USED_3RDPARTY_TCL_DIR@" set "TK_DIR=@USED_3RDPARTY_TK_DIR@" set "FREETYPE_DIR=@USED_3RDPARTY_FREETYPE_DIR@" - set "FREEIMAGE_DIR=@USED_3RDPARTY_FREEIMAGE_DIRS@" + set "FREEIMAGE_DIR=@USED_3RDPARTY_FREEIMAGE_DIR@" set "EGL_DIR=@USED_3RDPARTY_EGL_DIRS@" set "GLES2_DIR=@USED_3RDPARTY_GLES2_DIRS@" set "TBB_DIR=@USED_3RDPARTY_TBB_DIR@" set "VTK_DIR=@USED_3RDPARTY_VTK_DIR@" set "FFMPEG_DIR=@USED_3RDPARTY_FFMPEG_DIR@" + set "OPENVR_DIR=@USED_3RDPARTY_OPENVR_DIR@" if not "@USED_3RDPARTY_QT_DIR@" == "" ( set "QTDIR=@USED_3RDPARTY_QT_DIR@" diff --git a/adm/templates/env.bat.in b/adm/templates/env.bat.in index 624ea48d05..ab85ae16f8 100644 --- a/adm/templates/env.bat.in +++ b/adm/templates/env.bat.in @@ -140,6 +140,7 @@ if not ["%GLES2_DIR%"] == [""] set "PATH=%GLES2_DIR%;%PATH%" if not ["%TBB_DIR%"] == [""] set "PATH=%TBB_DIR%;%PATH%" if not ["%VTK_DIR%"] == [""] set "PATH=%VTK_DIR%;%PATH%" if not ["%FFMPEG_DIR%"] == [""] set "PATH=%FFMPEG_DIR%;%PATH%" +if not ["%OPENVR_DIR%"] == [""] set "PATH=%OPENVR_DIR%;%PATH%" if not ["%QTDIR%"] == [""] ( set "PATH=%QTDIR%/bin;%PATH%" set "QT_PLUGIN_PATH=%QTDIR%/plugins" diff --git a/dox/introduction/introduction.md b/dox/introduction/introduction.md index 0c9e5eb3f1..6587340761 100644 --- a/dox/introduction/introduction.md +++ b/dox/introduction/introduction.md @@ -358,7 +358,7 @@ for which OCCT is certified to work. The following third-party libraries and tools are not included in OCCT sources but are either required or can be optionally used for the indicated components of OCCT. They are not needed if relevant component is not needed. -Note that pe-built packages of many of the listed libraries are available at +Note that pre-built packages of many of the listed libraries are available at https://www.opencascade.com/content/3rd-party-components | Component | Where to find | Used for | Required or optional | @@ -366,6 +366,7 @@ https://www.opencascade.com/content/3rd-party-components | CMake 2.8+ | https://cmake.org/ | Build from sources | Optional | | Intel TBB 4.x or later | https://www.threadingbuildingblocks.org/ | All | Optional (advanced parallelization of algorithms) | | OpenGL 3.3+, OpenGL ES 2.0+ | System | Visualization | Required | +| OpenVR 1.10+ | https://github.com/ValveSoftware/openvr | Visualization | Optional (VR support) | | Direct3D 9 | Windows | Visualization | Optional (integration with GUI using Direct3D) | | FreeType 2.4.11-2.7.1 | https://sourceforge.net/projects/freetype/files/ | Visualization | Required | | FreeImage 3.17.0+ | https://sourceforge.net/projects/freeimage/files | Visualization | Optional (support of common 2D graphic formats) | @@ -583,7 +584,14 @@ implementation of 3D viewer. OpenGL specification is developed by the Khronos group, https://www.khronos.org/opengl/. OCCT code includes header file *glext.h* obtained from Khronos web site. -**VTK** -- The **Visualization Toolkit (VTK)** is an open-source, freely available software system for 3D computer graphics, image processing and visualization. OCCT VIS component provides adaptation functionality for visualization of OCCT topological shapes by means of VTK library. If you need further information on VTK, refer to VTK Homepage https://www.vtk.org/. +**OpenVR** is an API and runtime that allows access to VR hardware from multiple vendors +without requiring that applications have specific knowledge of the hardware they are targeting. +OpenVR is optionally used by OCCT for VR support. +OpenVR is released under BSD-like license (https://github.com/ValveSoftware/openvr/blob/master/LICENSE). + +**VTK** -- The **Visualization Toolkit (VTK)** is an open-source, freely available software system for 3D computer graphics, image processing and visualization. +OCCT VIS component provides adaptation functionality for visualization of OCCT topological shapes by means of VTK library. +If you need further information on VTK, refer to VTK Homepage https://www.vtk.org/. **Doxygen** developed by Dimitri van Heesch is open source documentation system for C++, C, Java, Objective-C, Python, IDL, PHP and C#. This product is used in Open CASCADE Technology @@ -621,7 +629,8 @@ It is available under GNU GPL v3 license (https://www.gnu.org/software/bison/). Delabella is used by BRepMesh as one of alternative 2D triangulation algorithms. Delabella is licensed under the MIT license (https://github.com/msokalski/delabella). -**CMake** is an open-source, cross-platform family of tools designed to build, test and package software. CMake is used to control the software compilation process using simple platform and compiler independent configuration files, and generate native makefiles and workspaces that can be used in the compiler environment of your choice. +**CMake** is an open-source, cross-platform family of tools designed to build, test and package software. +CMake is used to control the software compilation process using simple platform and compiler independent configuration files, and generate native makefiles and workspaces that can be used in the compiler environment of your choice. OCCT uses CMake as a build system. CMake is available under BSD 3-Clause license. See more at https://cmake.org/