install_azslc_windows.cmd 925 B

12345678910111213141516171819202122232425262728
  1. @echo off
  2. REM
  3. REM All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
  4. REM its licensors.
  5. REM
  6. REM For complete copyright and license terms please see the LICENSE at the root of this
  7. REM distribution (the "License"). All use of this software is governed by the License,
  8. REM or, if provided, by the license below or the license accompanying this file. Do not
  9. REM remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
  10. REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. REM
  12. SET BIN_PATH=%TARGET_INSTALL_ROOT%\bin
  13. SET SRC_PATH=temp\src
  14. mkdir %BIN_PATH%
  15. copy /Y %SRC_PATH%\README.md %TARGET_INSTALL_ROOT%\
  16. copy /Y %SRC_PATH%\LICENSE_APACHE2.TXT %TARGET_INSTALL_ROOT%\
  17. copy /Y %SRC_PATH%\LICENSE_MIT.TXT %TARGET_INSTALL_ROOT%\
  18. mkdir %BIN_PATH%\Release
  19. copy /Y %SRC_PATH%\build\win_x64\Release\azslc.exe %BIN_PATH%\Release\
  20. exit /b 0