Description
Hello, I am currently installing pythonocc but face several issues. I am following the INSTALL instructions (https://github.com/tpaviot/pythonocc-core/blob/master/INSTALL.md)
I crate a local copy of the repository, create the "cmake-build" folder and proceed to the first "cmake"
D:mypath> cd pythonocc-core
D:mypath\pythonocc-core> mkdir cmake-build
D:mypath\pythonocc-core> cd cmake-build
D:mypath\pythonocc-core\cmake-build> cmake ..
-- Selecting Windows SDK version 10.0.17763.0 to target Windows 10.0.18362.
-- /DWIN32 /D_WINDOWS /W3 /GR /EHsc
-- Python3 interpreter:D:/IfcOpenShell-master/deps-vs2017-x86-installed/Python34/python.exe
-- Python include directory:
-- Python library release: D:/IfcOpenShell-master/deps-vs2017-x86-installed/Python34/libs/python34.lib
-- Disabled SWIG warnings
-- Disabled deprecation warnings for oce
-- pythonOCC modules will be installed to: D:/IfcOpenShell-master/deps-vs2017-x86-installed/Python34/Lib/site-packages/OCC
-- Found MSVC compiler: 1 1916
-- Configuring done
-- Generating done
-- Build files have been written to: D:/IfcOpenShell-master/deps-vs2017-x86-installed/Python34/Lib/pythonocc-core
I got lots of VC++ Project Filters in the pythonocc-core folder. And then, I cannot find how to make the command line "make and make install" work properly (I launch cmd with administrator rights) but get always the same message:
D:mypath\pythonocc-core> make
mingw32-make.exe: *** No targets specified and no makefile found. Stop.
I also saw that this Cmake File exists: cmake_install
but there is actually no Makefile that could be a target for the make line. Do you have any idea what went wrong and how to solve that? Any advice would be very helpful, thank you for your attention.