platform_ios.cmake 602 B

1234567891011121314151617181920
  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. find_library(AV_FOUNDATION_LIBRARY AVFoundation)
  9. find_library(AUDIO_TOOLBOX_GRAPHICS_LIBRARY AudioToolbox)
  10. find_library(CORE_AUDIO_SERVICES_LIBRARY CoreAudio)
  11. find_library(FOUNDATION_LIBRARY Foundation)
  12. set(LY_BUILD_DEPENDENCIES
  13. PRIVATE
  14. ${AV_FOUNDATION_LIBRARY}
  15. ${AUDIO_TOOLBOX_GRAPHICS_LIBRARY}
  16. ${CORE_AUDIO_SERVICES_LIBRARY}
  17. ${FOUNDATION_LIBRARY}
  18. )