From 9059b4fb339ad23a097981f5d5d6c7713270983a Mon Sep 17 00:00:00 2001 From: kam Date: Sun, 1 May 2022 22:13:24 +0200 Subject: [PATCH] Make the build smaller by using Release configuration --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5d7cb05..9fc5d73 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,13 @@ +CONF?=/p:Configuration=Release default: cleanbuild build: nuget restore - cd QuickPlay && msbuild /t:Build + cd QuickPlay && msbuild /t:Build ${CONF} deploy: build - cd QuickPlay && msbuild /t:Install + cd QuickPlay && msbuild /t:Install ${CONF} clean: git clean -fxd