install_vulkan_validation_windows.cmd 788 B

12345678910111213141516171819202122232425262728293031
  1. @rem
  2. @rem Copyright (c) Contributors to the Open 3D Engine Project.
  3. @rem For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. @rem
  5. @rem SPDX-License-Identifier: Apache-2.0 OR MIT
  6. @rem
  7. @rem
  8. @setlocal
  9. set OUT_PATH=%TARGET_INSTALL_ROOT%
  10. set SRC_PATH=temp\\src
  11. set BLD_PATH=temp\\build
  12. mkdir %OUT_PATH%\\include
  13. mkdir %OUT_PATH%\\lib
  14. mkdir %OUT_PATH%\\lib\\release
  15. mkdir %OUT_PATH%\\lib\\debug
  16. copy %BLD_PATH%\\install\\lib\\release\\* %OUT_PATH%\\lib\\release\\
  17. IF %ERRORLEVEL% NEQ 0 (
  18. ECHO Unable to copy to %BLD_PATH%\\install\\lib\\release\\
  19. exit /b 1
  20. )
  21. copy %BLD_PATH%\\install\\lib\\debug\\* %OUT_PATH%\\lib\\debug\\
  22. IF %ERRORLEVEL% NEQ 0 (
  23. ECHO Unable to copy to %BLD_PATH%\\install\\lib\\debug\\
  24. exit /b 1
  25. )
  26. exit /b 0