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".
This commit is contained in:
arielsrv 2014-07-28 15:26:30 -03:00
parent fb5b7a34e3
commit ae88702e00
1 changed files with 4 additions and 0 deletions

4
build.cmd Normal file
View File

@ -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%