forked from SoarGroup/Soar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.bat
103 lines (86 loc) · 2.17 KB
/
build.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
@echo off
setlocal EnableDelayedExpansion
if not exist user-env.bat (
call :findexe python.exe
if not "!retval!"=="fail" (
set PYTHON_HOME=!retval!
)
call :findexe javac.exe
if not "!retval!"=="fail" (
set JAVA_HOME=!retval:\bin=!
echo javac.exe found
)
call :findexe swig.exe
if not "!retval!"=="fail" (
set SWIG_HOME=!retval!
echo swig.exe found
)
echo set PYTHON_HOME=!PYTHON_HOME!>>user-env.bat
echo set JAVA_HOME=!JAVA_HOME!>>user-env.bat
echo set SWIG_HOME=!SWIG_HOME!>>user-env.bat
echo user-env.bat created. I will read directories from there next time.
) else (
echo Reading local environment variables from user-env.bat
call user-env.bat
)
echo PYTHON_HOME=%PYTHON_HOME%
echo JAVA_HOME=%JAVA_HOME%
echo SWIG_HOME=%SWIG_HOME%
if not exist !PYTHON_HOME!\python.exe (
echo cannot locate python executable
exit /B
)
set PATH=!PYTHON_HOME!;%JAVA_HOME%\bin;%SWIG_HOME%;%PATH%
"%PYTHON_HOME%\python.exe" scons\scons.py -Q %*
exit /B
rem a "function" that tries to find an executable
:findexe
set retval=fail
set tempxx="%PATH:;=";"%"
for %%i in (%tempxx%) do (
if exist "%%i\%~1" (
set retval=%%~i
goto :EOF
)
)
if "%~1"=="python.exe" (
call :findpython
if not "!retval!"=="fail" goto :EOF
) else if "%~1"=="javac.exe" (
call :findjava
if not "!retval!"=="fail" goto :EOF
)
call :askuser %~1
goto :EOF
rem Search for python in registry
:findpython
set retval=fail
FOR /f "usebackq tokens=*" %%p in (`where python`) do (
echo python.exe found at %%p
if "!retval!"=="fail" SET PYTHON_HOME=%%~dpp
)
REM for /F "tokens=1,2,*" %%i in ('reg query HKLM\SOFTWARE\Python\PythonCore /s') do (
REM if exist %%k\python.exe set retval=%%k
REM )
goto :EOF
rem Search for java in registry
:findjava
set retval=fail
for /F "tokens=1,2,*" %%i in ('reg query "HKLM\SOFTWARE\JavaSoft\Java Development Kit" /s') do (
if exist %%k\bin\javac.exe set retval=%%k\bin
)
goto :EOF
:askuser
:whilebegin
set tempdir=
set /P tempdir=Enter directory that contains %~1, or nothing to ignore it:
if "%tempdir%"=="" (
set retval=fail
goto :EOF
)
if not exist "%tempdir%\%~1" (
echo it's not there
goto :whilebegin
)
set retval=%tempdir%
goto :EOF