1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
abv d6cda17a42 0028701: Configuration - add support of VS 2017
Added support of Visual Studio 2017 (15) in CMake build procedure.
CMake 3.7.2 or above is required to generate projects for VS 2017.

Since version of compiler and toolset remained at 14 (now they are 14.1), and they use the same run-time, the same third-party products as for VS 2015 (14) can be used.
Also the name of the folder for installation of OCCT binaries in OCCT-standard layout (default on Windows) remains "vc14".

Support of Visual Studio 2017 is added in genproj generator and relevant environment, with format specifier "vc141".

The syntax of the genproj command is revised:
- UWP is considered as separate platform ("uwp" alternative to "wnt"), not part of IDE specification
- Option "IDE" is renamed to "Format"
- Obsolete name of local variable "aWokStation" is replaced by equivalent "theFormat"

In environment scripts, additional variables are defined (derived from VCVER, see adm/vcver.bat):
- VCLIB defines name of the subdirectory specific to VS version; it is the same as VCVER except that for VCVER=vc141 VCLIB=vc14 and for VCVER=141-uwp VCLIB=vc14-uwp
- VCFMT is VCVER without optional suffix "-uwp"
- VCPROP is "NativeDesktop" for normal builds or "Universal" for UWP builds

Command genconf is amended to:
- Detect presence of VS 2017 (separately for desktop and UWP)
- Use only two first digits after "vc" in format specification for search of third-party libs
- Have more space in user interface for VS specification

All supported variants of VCVER variable are documented in dev guides / buiding / msvc
2017-07-13 17:29:45 +03:00

4.9 KiB

Building with MS Visual C++

@tableofcontents

@section build_msvc_intro General

This page describes steps to build OCCT libraries from a complete source archive on Windows with MS Visual C++ using projects generated by genproj tool. It is an alternative to use of CMake build system (see @ref occt_dev_guides__building_cmake).

genproj is a legacy tool (originated from command "wgenproj" in WOK) for generation of Visual Studio, Code.Blocks, and XCode project files used for building Open CASCADE Technology. These project files are placed inside OCCT directory (in adm subfolder) and use relative paths, thus can be moved together with sources.

The project files included in official distribution of OCCT are generated by this tool. If you have official distribution with project files included, you can use them directly without a need to call genproj.

@section build_msvc_3rdparty Third-party libraries

Before building OCCT, make sure to have all the required third-party libraries installed.

The easiest way to install third-party libraries is to download archive with pre-built binaries, corresponding to version of Visual Studio you are using, from http://www.opencascade.com/content/3rd-party-components.

You can also build third-party libraries from their sources, see @ref occt_dev_guides__building_3rdparty_windows for instructions.

@section build_msvc_conf Configuration

If you have Visual Studio projects already available (pre-installed or generated), you can edit file custom.bat manually to adjust the environment:

  • VCVER -- specification of format of project files, defining also version of Visual Studio to be used, and default name of the sub-folder for binaries:
VCVER Visual Studio version Windows Platform Binaries folder name
vc10 2010 (10) Desktop (Windows API) vc10
vc11 2012 (11) Desktop (Windows API) vc11
vc12 2013 (12) Desktop (Windows API) vc12
vc14 2015 (14) Desktop (Windows API) vc14
vc14-uwp 2015 (14) UWP (Universal Windows Platform) vc14-uwp
vc141 2017 (15) Desktop (Windows API) vc14
vc141-uwp 2017 (15) UWP (Universal Windows Platform) vc14-uwp
  • 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
  • SHORTCUT_HEADERS -- defines method for population of folder inc by header files. Supported methods are:
    • Copy - headers will be copied from src;
    • ShortCut - short-cut header files will be created, redirecting to same-named header located in src;
    • "HardLink* - hard links to headers located in src will be created.

Alternatively, you can launch genconf, a GUI tool allowing to configure build options interactively. That tool will analyze your environment and propose you to choose available options:

  • Version of Visual Studio to be used (from the list of installed ones, detected by presence of environment variables like VS100COMNTOOLS).
  • Method to populate folder inc (short-cuts by default).
  • Location of third-party libraries (usually downloaded from OCCT web site, see above).
  • Path to common directory where third-party libraries are located (optional).
  • Paths to headers and binaries of the third-party libraries (found automatically basing on previous options; click button "Reset" to update).
  • Generation of PDB files within Release build ("Release with Debug info", false by default).

@figure{/dev_guides/building/3rdparty/images/genconf_windows.png}

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

@section build_msvc_generate Projects generation

Launch genproj to update content of inc folder and generate project files after changes in OCCT code affecting layout or composition of source files.

@note To use genproj and genconf tools you need to have Tcl installed and accessible by PATH. If Tcl is not found, the tool may prompt you to enter the path to directory where Tcl can be found.

  $ genproj.bat

Note that if custom.bat is not present, genproj will start genconf to configure environment.

@section build_msvc_build Building

Launch msvc.bat to start Visual Studio with all necessary environment variables defined, and build the whole solution or required toolkits.

Note: the MSVC project files are located in folders adm\msvc\vc.... Binaries are produced in win32 or win64 folders.

To start DRAW, launch draw.bat.