build_installer_windows.cmd 402 B

1234567891011121314151617181920
  1. @ECHO OFF
  2. REM
  3. REM Copyright (c) Contributors to the Open 3D Engine Project.
  4. REM For complete copyright and license terms please see the LICENSE at the root of this distribution.
  5. REM
  6. REM SPDX-License-Identifier: Apache-2.0 OR MIT
  7. REM
  8. REM
  9. CALL "%~dp0build_windows.cmd"
  10. IF NOT %ERRORLEVEL%==0 GOTO :error
  11. CALL "%~dp0installer_windows.cmd"
  12. IF NOT %ERRORLEVEL%==0 GOTO :error
  13. EXIT /b 0
  14. :error
  15. EXIT /b 1