package-linux.sh 424 B

123456789101112131415161718
  1. #!/bin/bash
  2. # Copyright (c) Contributors to the Open 3D Engine Project.
  3. # For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. #
  5. # SPDX-License-Identifier: Apache-2.0 OR MIT
  6. cp -r temp/build/include $TARGET_INSTALL_ROOT
  7. cp -r temp/build/bin $TARGET_INSTALL_ROOT
  8. if [ -f temp/build/LICENSE.sse2neon ]
  9. then
  10. cp temp/build/LICENSE.sse2neon $TARGET_INSTALL_ROOT/
  11. fi
  12. exit 0