Build 3rd-parties
On Windows, the easiest way to install third-party libraries is to download archive with pre-built binaries from https://dev.opencascade.org/resources/download/3rd-party-components. On Linux and macOS, it is recommended to use the version installed in the system natively.
Windows
This section presents guidelines for building third-party products used by Open CASCADE Technology (OCCT) and samples on Windows platform. It is assumed that you are already familiar with MS Visual Studio / Visual C++.
You need to use the same version of MS Visual Studio for building all third-party products and OCCT itself, in order to receive a consistent set of runtime binaries.
It is recommended to create a separate new folder on your workstation, where you will unpack the downloaded archives of the third-party products, and where you will build these products (for example, c:/occ3rdparty
). Further in this document, this folder is referred to as 3rdparty
.
Tcl/Tk
Tcl/Tk is required for DRAW test harness.
Installation from sources: Tcl
Download the necessary archive from https://www.tcl.tk/software/tcltk/download.html and unpack it.
In the win sub-directory, edit file buildall.vc.bat:
Edit the line
"call ... vcvars32.bat"
to have correct path to the version of Visual Studio to be used for building, for instance:If you are building 64-bit version, set environment accordingly, e.g.:
Define variable INSTALLDIR pointing to directory where Tcl/Tk will be installed, e.g.:
Add option install to the first command line calling nmake:
Remove second call to
nmake
(building statically linked executable)
Edit file
rules.vc
replacing lineby
This is to avoid extra prefix 't' in the library name, which is not recognized by default by OCCT build tools.
By default, Tcl uses dynamic version of run-time library (MSVCRT), which must be installed on the system where Tcl will be used. You may wish to link Tcl library with static version of run-time to avoid this dependency. For that:
Edit file
makefile.vc
replacing strings"crt = -MD"
by"crt = -MT"
Edit source file
tclMain.c
(located in foldergeneric
) commenting out forward declaration of functionisatty()
.
In the command prompt, run
buildall.vc.bat
You might need to run this script twice to havetclsh
executable installed; check subfolderbin
of specified installation path to verify this.For convenience of use, we recommend making a copy of tclsh executable created in subfolder bin of INSTALLDIR and named with Tcl version number suffix, as tclsh.exe (with no suffix)
Installation from sources: Tk
Download the necessary archive from https://www.tcl.tk/software/tcltk/download.html and unpack it. Apply the same steps as described for building Tcl above, with the same INSTALLDIR
. Note that Tk produces its own executable, called wish
.
You might need to edit default value of TCLDIR
variable defined in buildall.vc.bat
(should be not necessary if you unpack both Tcl and Tk sources in the same folder).
FreeType
FreeType is required for text display in a 3D viewer. You can download its sources from https://freetype.org/
Unpack the downloaded archive of FreeType product into the
3rdparty
folder. As a result, you will get a folder named, for example,3rdparty/freetype-2.4.10
. Further in this document, this folder is referred to asfreetype
.Open the solution file
freetype/builds/win32/vc20xx/freetype.sln
in Visual Studio. Herevc20xx
stands for your version of Visual Studio.Select the configuration to build: either
Debug
orRelease
.Build the
freetype
project. As a result, you will get afreetype
import library (.lib
) in thefreetype/obj/win32/vc20xx
folder.If you build FreeType for a 64 bit platform, select in the main menu
Build - Configuration Manager
and addx64
platform to the solution configuration by copying the settings fromWin32
platform:Update the value of the Output File for
x64
configuration:Build the
freetype
project. As a result, you will obtain a 64 bit import library (.lib
) file in thefreetype/x64/vc20xx
folder. To build FreeType as a dynamic library (.dll
) follow steps 6, 7 and 8 of this procedure.Open menu Project-> Properties-> Configuration Properties-> General and change option
Configuration Type
toDynamic Library (.dll)
.Edit file freetype/include/freetype/config/ftoption.h:
in line 255, uncomment the definition of macro FT_EXPORT and change it as follows:
Build the
freetype
project. As a result, you will obtain the files of the import library (.lib
) and the dynamic library (.dll
) in foldersfreetype/objs/release
orfreetype/objs/debug
. If you build for a 64 bit platform, follow step 5 of the procedure.To facilitate the use of FreeType libraries in OCCT with minimal adjustment of build procedures, it is recommended to copy the include files and libraries of FreeType into a separate folder, named according to the pattern
freetype-compiler-bitness-building mode
, where:compiler
isvc8
orvc9
orvc10
orvc11
;bitness
is32
or64
;building mode
isopt
(forRelease
) ordeb
(forDebug
).
The
include
subfolder should be copied as is, while libraries should be renamed tofreetype.lib
andfreetype.dll
(suffixes removed) and placed to subdirectorieslib
andbin
, respectively. If theDebug
configuration is built, the Debug libraries should be put into subdirectorieslibd
andbind
.
TBB
This third-party product is installed with binaries from the archive that can be downloaded from https://github.com/oneapi-src/oneTBB/releases/tag/v2021.5.0. Go to the Download page, find the release version you need (e.g. oneTBB 2021.5.0
) and pick the archive for Windows platform. To install, unpack the downloaded archive of TBB product (oneapi-tbb-2021.5.0-win.zip
)
Unpack the downloaded archive of TBB product into the 3rdparty
folder.
Further in this document, this folder is referred to as tbb
.
FreeImage
This third-party product should be built as a dynamically loadable library (.dll
file). You can download its sources from [https://sourceforge.net/projects/freeimage/files/Source%20Distribution/](https://sourceforge.net/projects/freeimage/files/Source Distribution/)
Unpack the downloaded archive of FreeImage product into
3rdparty
folder. As a result, you should have a folder named3rdparty/FreeImage
. Rename it according to the rule:freeimage-platform-compiler-building mode
, whereplatform
iswin32
orwin64
;compiler
isvc8
orvc9
orvc10
orvc11
;building mode
is opt (for release) ordeb
(for debug)
Further in this document, this folder is referred to as
freeimage
.Open the solution file
freeimage/FreeImage.*.sln
in your Visual Studio. If you use a Visual Studio version higher than VC++ 2008, apply conversion of the workspace. Such conversion should be suggested automatically by Visual Studio.Select a configuration to build.
Choose
Release
if you are building Release binaries.Choose
Debug
if you are building Debug binaries.
Note:
If you want to build a debug version of FreeImage binaries then you need to rename the following files in FreeImage projects:
Project -> Properties -> Configuration Properties -> Linker -> General -> Output File
Project -> Properties -> Configuration Properties -> Linker -> Debugging-> Generate Program Database File
Project -> Properties -> Configuration Properties -> Linker -> Advanced-Import Library
Project -> Properties -> Configuration Properties -> Build Events -> Post -> Build Event -> Command Line
Additionally, rename in project FreeImagePlus
Project -> Properties -> Configuration Properties -> Linker -> Input -> Additional Dependencies
Select a platform to build.
Choose
Win32
if you are building for a 32 bit platform.Choose
x64
if you are building for a 64 bit platform.
Start the building process. As a result, you should have the library files of FreeImage product in
freeimage/Dist
folder (FreeImage.dll
andFreeImage.lib
).
VTK
VTK Integration Services component provides adaptation functionality for visualization of OCCT topological shapes by means of VTK library.
Download the necessary archive from https://www.vtk.org/VTK/resources/software.html and unpack it into
3rdparty
folder. As a result, you will get a folder named, for example,3rdparty/VTK-6.1.0
. Further in this document, this folder is referred to asVTK
.Use CMake to generate VS projects for building the library:
Start CMake-GUI and select
VTK
folder as source path, and the folder of your choice for VS project and intermediate build data.Click Configure.
Select the VS version to be used from the ones you have installed (we recommend using VS 2015) and the architecture (32 or 64-bit).
Generate VS projects with default CMake options. The open solution
VTK.sln
will be generated in the build folder.
Build project VTK in Release mode.
Linux
This section presents additional guidelines for building third-party products used by Open CASCADE Technology and samples on Linux platform.
Installation From Official Repositories
Debian-based distributives
All 3rd-party products required for building of OCCT could be installed from official repositories. You may install them from console using apt-get utility:
Building is possible with C++ compliant compiler:
Tcl/Tk
Tcl/Tk is required for DRAW test harness.
Installation from sources: Tcl
Download the necessary archive from https://www.tcl.tk/software/tcltk/download.html and unpack it.
Enter the unix sub-directory of the directory where the Tcl source files are located (TCL_SRC_DIR).
Run the
configure
command:For a 64 bit platform also add
--enable-64bit
option to the command line.If the configure command has finished successfully, start the building process:
If building is finished successfully, start the installation of Tcl. All binary and service files of the product will be copied to the directory defined by TCL_INSTALL_DIR
Installation from sources: Tk
Download the necessary archive from https://www.tcl.tk/software/tcltk/download.html and unpack it.
Enter the unix sub-directory of the directory where the Tk source files are located (TK_SRC_DIR)
Run the
configure
command, whereTCL_LIB_DIR
isTCL_INSTALL_DIR/lib
.For a 64 bit platform also add
--enable-64bit
option to the command line.If the configure command has finished successfully, start the building process:
If the building has finished successfully, start the installation of Tk. All binary and service files of the product will be copied to the directory defined by TK_INSTALL_DIR(usually it is TCL_INSTALL_DIR)
FreeType
FreeType is required for text display in the 3D viewer. Download the necessary archive from https://freetype.org/ and unpack it.
Enter the directory where the source files of FreeType are located (FREETYPE_SRC_DIR).
Run the
configure
command:For a 64 bit platform also add
CFLAGS='-m64 -fPIC' CPPFLAGS='-m64 -fPIC'
option to the command line.If the configure command has finished successfully, start the building process:
If the building has finished successfully, start the installation of FreeType. All binary and service files of the product will be copied to the directory defined by FREETYPE_INSTALL_DIR
TBB
This third-party product is installed with binaries from the archive that can be downloaded from https://github.com/oneapi-src/oneTBB/releases/tag/v2021.5.0. Go to the Download page, find the release version you need (e.g. oneTBB 2021.5.0
) and pick the archive for Linux platform. To install, unpack the downloaded archive of TBB product (oneapi-tbb-2021.5.0-lin.tgz
).
FreeImage
Download the necessary archive from [https://sourceforge.net/projects/freeimage/files/Source%20Distribution/](https://sourceforge.net/projects/freeimage/files/Source Distribution/) and unpack it. The directory with unpacked sources is further referred to as FREEIMAGE_SRC_DIR
.
Modify FREEIMAGE_SRC_DIR/Source/OpenEXR/Imath/ImathMatrix.h:
In line 60 insert the following:
Enter the directory where the source files of FreeImage are located (FREEIMAGE_SRC_DIR).
Run the building process
Run the installation process
a. If you have the permission to write into directories
/usr/include
and/usr/lib
, run the following command:b. If you do not have this permission, you need to modify file
FREEIMAGE_SRC_DIR/Makefile.gnu
:Change lines 7-9 from:
to:
Change lines 65-67 from:
to:
Change line 70 from:
to:
Then run the installation process by the following command:
Clean temporary files
VTK
Download the necessary archive from https://www.vtk.org/VTK/resources/software.html and unpack it.
Install or build
cmake
product from the source file.Start cmake in GUI mode with the directory where the source files of VTK are located:
Press
[c]
to make the initial configurationDefine the necessary options in
VTK_INSTALL_PREFIX
Press
[c]
to make the final configurationPress
[g]
to generateMakefile
and exit
Start the building of VTK:
Start the installation of VTK. Binaries will be installed according to the VTK_INSTALL_PREFIX option.
Mac OS X
This section presents additional guidelines for building third-party products used by Open CASCADE Technology and samples on Mac OS X platform (10.6.4 and later).
Tcl/Tk
Tcl/Tk is required for DRAW test harness.
Installation from sources: Tcl
Download the necessary archive from https://www.tcl.tk/software/tcltk/download.html and unpack it.
Enter the macosx sub-directory of the directory where the Tcl source files are located (TCL_SRC_DIR).
Run the
configure
commandFor a 64 bit platform also add
--enable-64bit
option to the command line.If the configure command has finished successfully, start the building process
If building is finished successfully, start the installation of Tcl. All binary and service files of the product will be copied to the directory defined by TCL_INSTALL_DIR.
Installation from sources: Tk
Download the necessary archive from https://www.tcl.tk/software/tcltk/download.html and unpack it.
Enter the macosx sub-directory of the directory where the source files of Tk are located (TK_SRC_DIR).
Run the
configure
command, whereTCL_LIB_DIR
isTCL_INSTALL_DIR/lib
For a 64 bit platform also add
--enable-64bit
option to the command line.If the configure command has finished successfully, start the building process:
If the building has finished successfully, start the installation of Tk. All binary and service files of the product will be copied to the directory defined by TK_INSTALL_DIR(usually it is TCL_INSTALL_DIR).
FreeType
FreeType is required for text display in the 3D viewer. Download the necessary archive from https://freetype.org/ and unpack it.
Enter the directory where the source files of FreeType are located (FREETYPE_SRC_DIR).
Run the
configure
commandFor a 64 bit platform also add
CFLAGS='-m64 -fPIC' CPPFLAGS='-m64 -fPIC'
option to the command line.If the configure command has finished successfully, start the building process
If building has finished successfully, start the installation of FreeType. All binary and service files of the product will be copied to the directory defined by FREETYPE_INSTALL_DIR.
TBB
This third-party product is installed with binaries from the archive that can be downloaded from https://github.com/oneapi-src/oneTBB/releases/tag/v2021.5.0. Go to the Download page, find the release version you need (e.g. oneTBB 2021.5.0
) and pick the archive for Mac OS X platform. To install, unpack the downloaded archive of TBB product (oneapi-tbb-2021.5.0-mac.tgz
).
FreeImage
Download the necessary archive from [https://sourceforge.net/projects/freeimage/files/Source%20Distribution/](https://sourceforge.net/projects/freeimage/files/Source Distribution/) and unpack it. The directory with unpacked sources is further referred to as FREEIMAGE_SRC_DIR
.
If you build FreeImage 3.15.x you can skip this step.
Modify
FREEIMAGE_SRC_DIR/Source/OpenEXR/Imath/ImathMatrix.h:
In line 60 insert the following:Modify
FREEIMAGE_SRC_DIR/Source/FreeImage/PluginTARGA.cpp
: In line 320 replace:with:
Enter the directory where the source files of FreeImage are located (FREEIMAGE_SRC_DIR).
Run the building process
Run the installation process
If you have the permission to write into /usr/local/include and /usr/local/lib directories, run the following command:
If you do not have this permission, you need to modify file
FREEIMAGE_SRC_DIR/Makefile.osx
: Change line 49 from:to:
Change lines 65-69 from:
to:
Then run the installation process by the following command:
Clean temporary files