forked from xycofryx/WPN-XM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.bat
39 lines (32 loc) · 1.7 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
@echo off
:: +-------------------------------------------------------------------------
:: |
:: | WPN-XM Server Stack - Execute Phing with WPN-XM build file
:: |
:: +-----------------------------------------------------------------------<3
SetLocal
cls
:: set window title
TITLE WPN-XM Server Stack for Windows - Build Script!
echo.
echo ^+--------------------------------------------------------------------------+
echo ^| ^|
echo ^| WPN-XM Server Stack - Build Script http://wpn-xm.org/ ^|
echo ^| ^|
echo ^+--------------------------------------------------------------------------+
echo ^| ^|
echo ^| The WPN-XM build process is automated with Phing. ^|
echo ^| ^|
echo ^| Author Jens-Andre Koch ([email protected]) ^|
echo ^| Copyright 2010 - 2014 ^|
echo ^| License MIT ^|
echo ^| ^|
echo ^+-------------------------------------------------------------------------^<3
echo.
:: Execute Phing with WPN-XM build file, run task "all" and produce log
bin\phing\phing.bat -verbose -debug
:: Use the build log only for debugging purposes, it slows down the build process.
:: bin\phing\phing.bat -logfile build.log > build2.log
EndLocal
:END
PAUSE