We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d282f9 commit 634efe1Copy full SHA for 634efe1
winbin/rebuild.bat
@@ -8,10 +8,15 @@ if not exist chenard.sln (
8
9
if not defined VCINSTALLDIR (
10
call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86_amd64
11
+ echo Build environment set for Visual Studio 2015.
12
)
13
14
if not exist logs (
15
mkdir logs
16
+ if not exist logs (
17
+ echo ERROR: cannot create 'logs' directory.
18
+ exit /b 1
19
+ )
20
echo Created 'logs' directory.
21
22
@@ -25,3 +30,6 @@ for %%p in (Win32 x64) do (
25
30
26
31
27
32
33
+
34
+echo Successful rebuild of all Chenard executables.
35
+exit /b 0
0 commit comments