mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-01-31 12:50:52 +00:00
Merge pull request #475 from Talon1024/feature/makeDebug
Allow build type to be set in the environment
This commit is contained in:
commit
61a2a30099
1 changed files with 3 additions and 1 deletions
4
Makefile
4
Makefile
|
@ -1,4 +1,6 @@
|
|||
|
||||
BUILDTYPE ?= Release
|
||||
|
||||
all: linux
|
||||
|
||||
run:
|
||||
|
@ -9,7 +11,7 @@ linux: builder native
|
|||
mac: builder nativemac
|
||||
|
||||
builder:
|
||||
msbuild /nologo /verbosity:minimal -p:Configuration=Release BuilderMono.sln
|
||||
msbuild /nologo /verbosity:minimal -p:Configuration=$(BUILDTYPE) BuilderMono.sln
|
||||
cp builder.sh Build/builder
|
||||
chmod +x Build/builder
|
||||
|
||||
|
|
Loading…
Reference in a new issue