Skip to content

Commit 2a42a58

Browse files
committed
Merge branch 'master' into HEAD
2 parents 86d7205 + 8625aab commit 2a42a58

3 files changed

Lines changed: 12 additions & 1 deletion

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ Instructions in a nutshell (**assuming Visual Studio 2015 x64 environment variab
4848
> build-deps.cmd
4949
> run-cmake.bat
5050

51+
NB: `build-deps.cmd` need to be ran from the directory containing it, i.e. the `./win` folder.
52+
5153
You can now open and build the solution file in Visual Studio:
5254

5355
> ..\build-vs2015-x64\IfcOpenShell.sln

nix/build-all.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
OCE_VERSION="0.18"
6565
# OCCT_VERSION="7.1.0"
6666
# OCCT_HASH="89aebde"
67-
PYTHON_VERSIONS=["2.7.16", "3.2.6", "3.3.6", "3.4.6", "3.5.3", "3.6.2", "3.7.3"]
67+
PYTHON_VERSIONS=["2.7.16", "3.2.6", "3.3.6", "3.4.6", "3.5.3", "3.6.2", "3.7.3", "3.8.2"]
6868
# OCCT_VERSION="7.2.0"
6969
# OCCT_HASH="88af392"
7070
OCCT_VERSION="7.3.0p3"

win/build-deps.cmd

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@
2424
@echo off
2525
echo.
2626

27+
for %%Q in ("%~dp0\.") DO set "batpath=%%~fQ"
28+
29+
if NOT "%CD%" == "%batpath%" (
30+
GOTO :ErrorAndPrintUsage
31+
)
32+
33+
2734
set PROJECT_NAME=IfcOpenShell
2835
call utils\cecho.cmd 15 0 "This script fetches and builds all %PROJECT_NAME% dependencies"
2936
echo.
@@ -562,3 +569,5 @@ echo - https://www.visualstudio.com/
562569
echo 5. Run this batch script with Visual Studio environment variables set.
563570
echo - https://msdn.microsoft.com/en-us/library/ms229859(v=vs.110).aspx
564571
echo.
572+
echo NB: This script needs to be ran from the directory directly containing it.
573+
echo.

0 commit comments

Comments
 (0)