程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> xcopy-批處理文件的作用,setHOME

xcopy-批處理文件的作用,setHOME

編輯:編程綜合問答
批處理文件的作用,setHOME

setlocal
REM Visual Studio 2010
set MSVC_HOME=C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC
REM Platform SDK for Windows Server 2003 R2
set mssdk=C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2
REM Windows SDK for Windows Vista (RC.exeのみ使用する)
set winsdk=C:\Program Files\Microsoft SDKs\Windows\v6.0

set PROGRAM_OUTPUT=isstudio.exe

call "%MSVC_HOME%\bin\vcvars32.bat"
@echo on

cd library
cd win32
cmd /c build.bat -output %PROGRAM_OUTPUT%
xcopy isstudio*.exe ....\bin\win32\win32\x86 /y
xcopy isstudio.env ....\bin\win32\win32\x86 /y
rem xcopy eclipse*.dll ......\org.eclipse.equinox.launcher.win32.win32.x86 /y
nmake -f make_win32.mak PROGRAM_OUTPUT=%PROGRAM_OUTPUT% clean
pause
cmd /c build.bat x86_64 -output %PROGRAM_OUTPUT%
xcopy isstudio*.exe ....\bin\win32\win32\x86_64 /y
rem xcopy eclipse*.dll ......\org.eclipse.equinox.launcher.win32.win32.x86_64 /y
nmake -f make_win64.mak PROGRAM_OUTPUT=%PROGRAM_OUTPUT% clean
pause
cmd /c build.bat ia64 -output %PROGRAM_OUTPUT%
xcopy isstudio*.exe ....\bin\win32\win32\ia64 /y
rem xcopy eclipse*.dll ......\org.eclipse.equinox.launcher.win32.win32.ia64 /y
nmake -f make_win64_ia64.mak PROGRAM_OUTPUT=%PROGRAM_OUTPUT% clean
pause
endlocal

最佳回答:


這個真是玩透了,不過都絕對路徑不如用相對路徑啊

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved