Mechanical refinement to build cmd files

build.cmd can take an optional target name like Compile or several targets in order with quotes like "Compile,Package"
clicktobuild.cmd will detect when the sdk env variable is not present, and vs2k8 is, and it will run the vs batch to initialize environment for calling msbuild

--HG--
branch : dev
This commit is contained in:
Louis DeJardin
2010-02-07 15:07:45 -08:00
parent 521ea7ca2f
commit 6267c938de
2 changed files with 19 additions and 2 deletions

View File

@@ -1,2 +1,2 @@
if .%1.==.. build Build
msbuild /t:%1
if "%~1"=="" build Build
msbuild /t:%~1