platform_mac.cmake 528 B

123456789101112131415161718
  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. set(LY_BUILD_DEPENDENCIES
  12. PRIVATE
  13. ${AV_FOUNDATION_LIBRARY}
  14. ${AUDIO_TOOLBOX_GRAPHICS_LIBRARY}
  15. ${CORE_AUDIO_SERVICES_LIBRARY}
  16. )