diff --git a/win/readme.md b/win/readme.md index ca509dc4e9..b504108920 100644 --- a/win/readme.md +++ b/win/readme.md @@ -99,7 +99,6 @@ Directory Structure | install-ifcopenshell.bat - Installs/deploys IFCOS using MSVC. | readme.md - This file | run-cmake.bat - Sets environment variables for the dependencies and runs CMake for IFCOS using MSVC -| set-python-to-path.bat - Utility for setting PYTHONHOME (read from BuildDepsCache-.txt) to PATH | vs-cfg.cmd - Utility file used by the build scripts \---patches - Contains patches for the dependencies \---utils - Contains various utilities for the build scripts diff --git a/win/set-python-to-path.bat b/win/set-python-to-path.bat deleted file mode 100755 index 08e3f7f5e3..0000000000 --- a/win/set-python-to-path.bat +++ /dev/null @@ -1,36 +0,0 @@ -::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -:: :: -:: This file is part of IfcOpenShell. :: -:: :: -:: IfcOpenShell is free software: you can redistribute it and/or modify :: -:: it under the terms of the Lesser GNU General Public License as published by :: -:: the Free Software Foundation, either version 3.0 of the License, or :: -:: (at your option) any later version. :: -:: :: -:: IfcOpenShell is distributed in the hope that it will be useful, :: -:: but WITHOUT ANY WARRANTY; without even the implied warranty of :: -:: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the :: -:: Lesser GNU General Public License for more details. :: -:: :: -:: You should have received a copy of the Lesser GNU General Public License :: -:: along with this program. If not, see . :: -:: :: -::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: - -:: Pass x86 or x64 as %1, if not specified x64 assumed. - -@if not defined ECHO_ON ( echo off ) -set TARGET_ARCH=%1 -if "%TARGET_ARCH%"=="" set TARGET_ARCH=x64 -if not exist "%~dp0BuildDepsCache-%TARGET_ARCH%.txt". ( - echo %~dp0BuildDepsCache-%TARGET_ARCH%.txt does not exist - goto :EOF -) -for /f "usebackq delims== tokens=1,2" %%G in ("%~dp0BuildDepsCache-%TARGET_ARCH%.txt") do set %%G=%%H -if not defined PYTHONHOME ( - echo PYTHONHOME not defined - goto :EOF -) - -echo %PYTHONHOME% set to PATH -set PATH=%PYTHONHOME%;%PATH%