Skip to content

Commit d2fd0b8

Browse files
committed
Starting work on the Windows check-dependencies script
1 parent 1764cbb commit d2fd0b8

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

windows/check-dependencies.bat

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
@echo off
2+
3+
echo =======================================
4+
python --version >nul 2>&1 && (
5+
echo Python was found successfully
6+
) || (
7+
echo Python not found
8+
echo Please install Python 2.7+ from here: https://www.python.org/downloads/
9+
echo NOTE 1: 3.0 is untested as of now
10+
echo NOTE 2: Using the 32-bits installer is recommended
11+
)
12+
13+
echo =======================================
14+
scons --version >nul 2>&1 && (
15+
echo SCons was found successfully
16+
) || (
17+
echo SCons not found
18+
echo Please install SCons from here: http://www.scons.org/
19+
)
20+
21+
echo =======================================
22+
pause

0 commit comments

Comments
 (0)