custombuildstep.bat
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:1k
源码类别:

其他游戏

开发平台:

Visual C++

  1. @ECHO OFF
  2. REM %1 == HAVOK_EXPORT_FILTERS_ROOT (taken from environment variable)
  3. REM %2 == TARGET_PATH (full path to DLL)
  4. setlocal
  5. mkdir "%~1filters" > nul
  6. xcopy "%~2" "%~1filters" /s /y >nul
  7. if errorlevel 1 goto failure
  8. echo Files copied to %1
  9. REM We copy the output to a file so VisualStudio knows that the build step was successful
  10. echo Files copied to %1 > "%~2.output"
  11. exit /b 0
  12. endlocal 
  13. :failure
  14. echo Couldn't copy files to %1... 
  15. echo Make sure DLLs are not in use and that HAVOK_EXPORT_FILTERS_ROOT is defined
  16. REM Return an ErrorLevel of 1
  17. exit /b 1