Add a Makefile

master
LEdoian 3 years ago
parent 8a1fc15f25
commit 9d9227b4ed

@ -0,0 +1,15 @@
default: cleanbuild
build:
nuget restore
cd QuickPlay && msbuild /t:Build
deploy: build
cd QuickPlay && msbuild /t:Install
clean:
git clean -fxd
git submodule foreach --recursive git clean -fxd
cleanbuild: clean build
Loading…
Cancel
Save