Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/windirstat.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorOliver Schneider <oliver@assarbad.net>2014-01-08 03:05:09 +0400
committerOliver Schneider <oliver@assarbad.net>2014-01-08 03:05:09 +0400
commit85a1441a2f4a2ecb91e0d8d917c0888c802f192b (patch)
tree069dcef4410cbb7e758e36c3466d18434f83d380 /common
parent1892267aab120e55292dc49e3a585e489b1f551a (diff)
Fixing Issue #92
Diffstat (limited to 'common')
-rw-r--r--common/produce_vsprojects.cmd5
1 files changed, 4 insertions, 1 deletions
diff --git a/common/produce_vsprojects.cmd b/common/produce_vsprojects.cmd
index b94961e..cd0c509 100644
--- a/common/produce_vsprojects.cmd
+++ b/common/produce_vsprojects.cmd
@@ -13,8 +13,11 @@ set REPOROOT=%~dp0..
set COMMON=%~dp0
:: Change into the repository root
setlocal & pushd "%REPOROOT%"
+if "%~1" == "full" set OPTIONS=--resources --sdk71
+if "%~1" == "sdk71" set OPTIONS=--sdk71
+if "%~1" == "resources" set OPTIONS=--resources
for %%i in (vs2005 vs2008 vs2010 vs2012 vs2013) do @(
- "%COMMON%\premake4.exe" %%i
+ "%COMMON%\premake4.exe" %OPTIONS% %%i
)
:: Back to normal
popd & endlocal