mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-26 10:19:45 +03:00
Command gendoc improved to: - generate Reference Manual documentation (OCCT classes reference) with option -refman; option -overview can be used for generation of overview documentation; - generate PDF documents for all User Guides automatically (for files listed in FILES_PDF.txt); - check availability of third-party tools (Doxygen, Inkscape etc.) and properly report warnings and errors. - use templates of configuration files for third-party tools instead of their generation. These template files are located in dox/resources folder Tcl scripts are moved from dox folder to adm. Doxygen warnings are eliminated. Moved all auxilary functions to occaux.tcl.
32 lines
1.3 KiB
Markdown
32 lines
1.3 KiB
Markdown
Building with MS Visual C++ {#occt_dev_guides__building_msvc}
|
|
===========================
|
|
|
|
This file describes steps to build OCCT libraries from complete source
|
|
archive on Windows with MS Visual C++.
|
|
|
|
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 occt_dev_guides__building_wok for instructions.
|
|
|
|
Before building OCCT, you need to install required third-party libraries; see
|
|
paragraph 1 of \ref occt_dev_guides__building for instructions.
|
|
|
|
1. Edit file custom.bat to define environment:
|
|
|
|
- VCVER - version of Visual Studio (vc8, vc9, vc10, vc11 or vc12),
|
|
and relevant VCVARS path
|
|
- ARCH - architecture (32 or 64), affects only PATH variable for execution
|
|
- HAVE_* - flags to enable or disable use of optional third-party products
|
|
- CSF_OPT_* - paths to search for includes and binaries of all used
|
|
third-party products
|
|
|
|
2. Launch msvc.bat to start Visual Studio with all necessary environment
|
|
variables defined.
|
|
|
|
Note: the MSVC project files are located in folders adm\\msvc\\vc[9-12].
|
|
Binaries are produced in win32 or win64 folders.
|
|
|
|
3. Build with Visual Studio
|
|
|
|
To start DRAW, launch draw.bat.
|