Open CASCADE Technology  7.0.0

Building with Code::Blocks

General

This file describes steps to build OCCT libraries from sources using Code::Blocks, a cross-platform IDE, using project files generated by OCCT legacy tool genproj. It can be used as an alternative to CMake build system (see Building with CMake) for all supported platforms.

Third-party libraries

Before building OCCT, make sure to have all the needed third-party libraries installed, see Building OCCT from sources.

Configuration

Before building it is necessary to set up build environment.

The environment is defined in the file custom.sh (on Linux and OS X) or custom.bat (on Windows) which can be edited directly:

  • Add paths to includes of used third-party libraries in variable CSF_OPT_INC.
  • Add paths to their binary libraries in variable CSF_OPT_LIB64.
  • Set variable SHORTCUT_HEADERS to "true" to have folder inc populated by short-cut files pointing to actual headers located in src; otherwise, header files will be copied to inc.
  • For optional third-party libraries, set corresponding environment variable HAVE_<LIBRARY_NAME> to either false, e.g.:
    1 export HAVE_GL2PS=false

Alternatively, or when custom.sh or custom.bat does not exist, you can launch genconf tool to configure environment interactively:

genconf_linux.png

Click "Save" to store the specified configuration in custom.sh or custom.bat file.

Projects generation

Launch genproj tool with option cbp to update content of inc folder and generate project files after changes in OCCT code affecting layout or composition of source files:

1 $ cd /dev/OCCT/opencascade-7.0.0
2 $ ./genproj cbp

The generated Code::Blocks project are placed into subfolder adm/<OS>/cbp.

Note
To use genproj and genconf tools you need to have Tcl installed and accessible by PATH.

Building

To start Code::Blocks, launch script codeblocks.sh.

To build all toolkits, click Build->Build workspace in the menu bar.

To start DRAWEXE, which has been built with Code::Blocks on Mac OS X, run the script

1 ./draw_cbp.sh cbp [d]

Option d is used if OCCT has been built in Debug mode.