You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
QuickPlay/Makefile

16 lines
228 B
Makefile

3 years ago
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