platform_mac.cmake 463 B

123456789101112131415161718192021
  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(FOUNDATION_LIBRARY Foundation)
  9. find_library(OPENGL_LIBRARY OpenGL)
  10. set(LY_BUILD_DEPENDENCIES
  11. PRIVATE
  12. ${FOUNDATION_LIBRARY}
  13. ${OPENGL_LIBRARY}
  14. )
  15. set(LY_BUILD_DEPENDENCIES
  16. PUBLIC
  17. 3rdParty::Qt::MacExtras
  18. )