CMakeLists.txt 651 B

12345678910111213141516171819202122232425262728293031
  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. if (NOT PAL_TRAIT_BUILD_HOST_TOOLS)
  9. return()
  10. endif()
  11. set(sdkwrapper_dir ${CMAKE_CURRENT_LIST_DIR}/../SDKWrapper)
  12. ly_add_target(
  13. NAME SDKWrapper STATIC
  14. NAMESPACE AZ
  15. FILES_CMAKE
  16. sdkwrapper_files.cmake
  17. INCLUDE_DIRECTORIES
  18. PUBLIC
  19. .
  20. ../..
  21. BUILD_DEPENDENCIES
  22. PRIVATE
  23. AZ::AzCore
  24. AZ::AzToolsFramework
  25. PUBLIC
  26. 3rdParty::assimp
  27. )