I have created new issue in Mantis, #28701, for support of Visual Studio 2017.
As it turns, the binaries produced by VS 2017 use the same C run-time libraries as the ones produced by VS 2015. This means that binaries are compatible, and in particular third-party libraries built for VS 2015 can be used with VS 2017 without any changes. Thus in our build procedures, we do not need to have new ID for binaries produced by VS 2017: "vc14" is OK.
You can try the patch for CMake build procedures that adds support of VS 2017 (in this way) from the branch CR28701.
The situation is more complicated for OCCT own build procedures (genproj command):
- To be able to build with both VS 2015 and 2017 smoothly, we need to distinguish them somehow, and be able to choose the right one. The simplest approach is to use the latest version available on the current workstation. This would be good default behavior; however, an option to specify version (and possibly location) of Visual Studio explicitly is needed.
- To find location of VS 2017, we cannot any more use environment variables (such as VS141COMNTOOLS) and need to call separate tool vswhere.exe instead. Alas, that tool is not yet installed together with VS 2017, but developers promise this will be done starting with update 2017.2.
Thus it takes more time and effort to support VS 2017 in genproj tools.
Note that genproj cannot be just dropped: the projects that come with OCCT official releases are generated by this tool; they allow building OCCT out of the box without CMake.