2
0

CMakeLists.txt 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. set(gem_path ${CMAKE_CURRENT_LIST_DIR})
  9. set(gem_json ${gem_path}/gem.json)
  10. o3de_restricted_path(${gem_json} gem_restricted_path gem_parent_relative_path)
  11. # Currently we are in the Paper_Kid/Code folder: ${CMAKE_CURRENT_LIST_DIR}
  12. # Get the platform specific folder ${pal_dir} for the current folder: ${CMAKE_CURRENT_LIST_DIR}/Platform/${PAL_PLATFORM_NAME}
  13. # Note: o3de_pal_dir will take care of the details for us, as this may be a restricted platform
  14. # in which case it will see if that platform is present here or in the restricted folder.
  15. # i.e. It could here : Paper_Kid/Code/Platform/<platform_name> or
  16. # <restricted_folder>/<platform_name>/Paper_Kid/Code
  17. o3de_pal_dir(pal_dir ${CMAKE_CURRENT_LIST_DIR}/Platform/${PAL_PLATFORM_NAME} "${gem_restricted_path}" "${gem_path}" "${gem_parent_relative_path}")
  18. # Now that we have the platform abstraction layer (PAL) folder for this folder, thats where we will find the
  19. # traits for this platform. Traits for a platform are defines for things like whether or not something in this project
  20. # is supported by this platform.
  21. include(${pal_dir}/PAL_${PAL_PLATFORM_NAME_LOWERCASE}.cmake)
  22. # Now that we have loaded our project traits for this platform, see if this project is even supported on this platform.
  23. # If its not supported we just return after including the unsupported.
  24. if(NOT PAL_TRAIT_PAPER_KID_SUPPORTED)
  25. return()
  26. endif()
  27. # We are on a supported platform, so add the Paper_Kid target
  28. # Note: We include the common files and the platform specific files which are set in paper_kid_files.cmake and
  29. # in ${pal_dir}/paper_kid_${PAL_PLATFORM_NAME_LOWERCASE}_files.cmake
  30. ly_add_target(
  31. NAME Paper_Kid.Static STATIC
  32. NAMESPACE Gem
  33. FILES_CMAKE
  34. paper_kid_files.cmake
  35. ${pal_dir}/paper_kid_${PAL_PLATFORM_NAME_LOWERCASE}_files.cmake
  36. INCLUDE_DIRECTORIES
  37. PUBLIC
  38. Include
  39. BUILD_DEPENDENCIES
  40. PRIVATE
  41. AZ::AzGameFramework
  42. Gem::Atom_AtomBridge.Static
  43. )
  44. ly_add_target(
  45. NAME Paper_Kid ${PAL_TRAIT_MONOLITHIC_DRIVEN_MODULE_TYPE}
  46. NAMESPACE Gem
  47. FILES_CMAKE
  48. paper_kid_shared_files.cmake
  49. ${pal_dir}/paper_kid_shared_${PAL_PLATFORM_NAME_LOWERCASE}_files.cmake
  50. INCLUDE_DIRECTORIES
  51. PUBLIC
  52. Include
  53. BUILD_DEPENDENCIES
  54. PRIVATE
  55. Gem::Paper_Kid.Static
  56. AZ::AzCore
  57. )
  58. # if enabled, Paper_Kid is used by all kinds of applications
  59. ly_create_alias(NAME Paper_Kid.Builders NAMESPACE Gem TARGETS Gem::Paper_Kid)
  60. ly_create_alias(NAME Paper_Kid.Tools NAMESPACE Gem TARGETS Gem::Paper_Kid)
  61. ly_create_alias(NAME Paper_Kid.Clients NAMESPACE Gem TARGETS Gem::Paper_Kid)
  62. ly_create_alias(NAME Paper_Kid.Servers NAMESPACE Gem TARGETS Gem::Paper_Kid)
  63. ################################################################################
  64. # Gem dependencies
  65. ################################################################################
  66. # Enable the specified list of gems from GEM_FILE or GEMS list for this specific project:
  67. ly_enable_gems(PROJECT_NAME Paper_Kid GEM_FILE enabled_gems.cmake)