From ae88702e00fd27aca7719ba433b5fbe49a1cda4e Mon Sep 17 00:00:00 2001 From: arielsrv Date: Mon, 28 Jul 2014 15:26:30 -0300 Subject: [PATCH] Added building support from Windows command line. This feature allow build in parallel (all available core) and use hard links if possible. Also change configuration destiny (i. e. avx2). It really is much faster than Visual Studio GUI. Usage: build.cmd "Release AVX". --- build.cmd | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 build.cmd diff --git a/build.cmd b/build.cmd new file mode 100644 index 0000000000..cdb31aa51b --- /dev/null +++ b/build.cmd @@ -0,0 +1,4 @@ +@echo off +SET Configuration=%1 +call clean_msvc.cmd +MSBuild.exe pcsx2_suite_2013.sln /m /p:BuildInParallel=true /p:CreateHardLinksForCopyLocalIfPossible=true /t:Clean,Rebuild /p:Configuration=%Configuration%