forked from chucknorris/roundhouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ilmerge.bat
37 lines (28 loc) · 967 Bytes
/
ilmerge.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
@echo off
::Project UppercuT - http://projectuppercut.org
if '%2' NEQ '' goto usage
if '%3' NEQ '' goto usage
if '%1' == '/?' goto usage
if '%1' == '-?' goto usage
if '%1' == '?' goto usage
if '%1' == '/help' goto usage
SET DIR=%~d0%~p0%
SET NANT="%DIR%lib\Nant\nant.exe"
SET build.config.settings="%DIR%settings\UppercuT.config"
%NANT% %1 /f:.\build\default.build -D:build.config.settings=%build.config.settings%
if %ERRORLEVEL% NEQ 0 goto errors
SET dirs.merge.from="%DIR%code_drop\RoundhousE\ConsoleApp"
SET file.merge.name="rh.exe"
:: library, exe, winexe
SET merge.target.type="exe"
%NANT% %1 /f:.\build\ilmerge.build -D:build.config.settings=%build.config.settings% -D:dirs.merge.from=%dirs.merge.from% -D:file.merge.name=%file.merge.name% -D:merge.target.type=%merge.target.type%
if %ERRORLEVEL% NEQ 0 goto errors
goto finish
:usage
echo.
echo Usage: build.bat
echo.
goto finish
:errors
EXIT /B %ERRORLEVEL%
:finish