CMakeLists.txt 595 B

12345678910111213141516171819202122232425
  1. #
  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. #
  7. #
  8. # This is the launcher that will be used by the O3DE_SDK.app bundle
  9. # generated by the cmake install process for Mac.
  10. if(NOT ${PAL_PLATFORM_NAME} STREQUAL Mac)
  11. return()
  12. endif()
  13. ly_add_target(
  14. NAME O3DE_SDK EXECUTABLE
  15. NAMESPACE AZ
  16. FILES_CMAKE
  17. O3DE_SDK_files.cmake
  18. BUILD_DEPENDENCIES
  19. PRIVATE
  20. AZ::AzCore
  21. AZ::AzFramework
  22. )