unrelated changes: Unused unit OpenCL removed from UDLIST All articles revised README revised comments are allowed in FILES.txt Add gendoc.sh for Linux Added option -s to set search engine of the HTML documents Added 3rdparty_building docs for different platforms help message removed from bat&sh scripts (left within tcl script) tableofcontents added for all huge articles; gendoc.bat doesn't change PATH variable jpgs converted to pngs and unused pngs removed logo displaying of pdf files fixed Automatic detection of OCCT version number added to occtdoc.tcl OCCT version within pdfs is got from Standard_Version.hxx; copyright changed pdf generation process removes latex dir now GIF images converted to PNG in technical_overview; references fixed (incorrect reference to wok and cdl didn't touch; redundant latex option removed Tutorial moved from Overview and made top level page LICENSE.md moved from dox/overview to dox folder Section related to OCCT building refactored and simplified. WOK and CDL explicitly declared as deprecated.
2.1 KiB
Building with Code::Blocks on Mac OS X
This file describes steps to build OCCT libraries from complete source package on Mac OS X with Code::Blocks.
If you are building OCCT from bare sources (as in Git repository), or do some changes affecting CDL files, you need to use WOK to re-generate header files and build scripts / projects. See \ref dev_guides__building__wok for instructions.
Before building OCCT, you need to install required third-party libraries; see OCCT_Build3rdParty_OSX.pdf for details.
-
Add paths to the mandatory 3rd-party products (Tcl/Tk and FreeType) in file custom.sh located in <OCCT_ROOT_DIR>. For this:
1.1. Add paths to the includes in variable "CSF_OPT_INC";
1.2. Add paths to the binary libraries in variable "CSF_OPT_LIB64";
All paths should be separated by ":" symbol.
-
Add paths to the optional 3rd-party libraries (TBB, gl2ps and FreeImage) in the aforementioned environment variables "CSF_OPT_INC" and "CSF_OPT_LIB64" from file custom.sh.
If you want to build OCCT without the optional libraries perform the following steps:
2.1 Disable unnecessary library in custom.sh by setting the corresponding variable HAVE_<LIBRARY_NAME> to "false".
export HAVE_GL2PS=false
2.2 Remove this library from Linker settings in Code::Blocks for each project that uses it: right click on the required project, choose "Build options", go to "Linker settings" tab in the opened window , select unnecessary libraries and click "Delete" button.
-
Open Terminal application
-
Enter <OCCT_ROOT_DIR>:
cd <OCCT_ROOT_DIR>
-
To start Code::Blocks, run the command /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, perform the following steps:
-
Open Terminal application
-
Enter <OCCT_ROOT_DIR>:
cd <OCCT_ROOT_DIR>
-
Run script
./draw_cbp.sh cbp [d]
Option "d" is used if OCCT has been built in Debug mode.