CMakeLists.txt 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. # Query the gem name from the gem.json file if possible
  9. # otherwise fallback to using ${Name}
  10. o3de_find_ancestor_gem_root(gempath gem_name "${CMAKE_CURRENT_SOURCE_DIR}")
  11. if (NOT gem_name)
  12. set(gem_name "RobotVacuumSample")
  13. endif()
  14. # Fallback to using the current source CMakeLists.txt directory as the gem root path
  15. if (NOT gem_path)
  16. set(gem_path ${CMAKE_CURRENT_SOURCE_DIR})
  17. endif()
  18. set(gem_json ${gem_path}/gem.json)
  19. o3de_restricted_path(${gem_json} gem_restricted_path gem_parent_relative_path)
  20. # Currently we are in the RobotVacuumSample/Gem folder: ${CMAKE_CURRENT_LIST_DIR}
  21. # Get the platform specific folder ${pal_dir} for the current folder: ${CMAKE_CURRENT_LIST_DIR}/Platform/${PAL_PLATFORM_NAME}
  22. # Note: o3de_pal_dir will take care of the details for us, as this may be a restricted platform
  23. # in which case it will see if that platform is present here or in the restricted folder.
  24. # i.e. It could here : RobotVacuumSample/Gem/Platform/<platform_name> or
  25. # <restricted_folder>/<platform_name>/RobotVacuumSample/Gem
  26. o3de_pal_dir(pal_dir ${CMAKE_CURRENT_LIST_DIR}/Platform/${PAL_PLATFORM_NAME} "${gem_restricted_path}" "${gem_path}" "${gem_parent_relative_path}")
  27. # Now that we have the platform abstraction layer (PAL) folder for this folder, thats where we will find the
  28. # traits for this platform. Traits for a platform are defines for things like whether or not something in this project
  29. # is supported by this platform.
  30. include(${pal_dir}/PAL_${PAL_PLATFORM_NAME_LOWERCASE}.cmake)
  31. # Now that we have loaded our project traits for this platform, see if this project is even supported on this platform.
  32. # If its not supported we just return after including the unsupported.
  33. if(NOT PAL_TRAIT_ROBOT_VACUUM_SAMPLE_SUPPORTED)
  34. message(FATAL_ERROR "The Robot Vacuum Sample application is not supported on this platform")
  35. return()
  36. endif()
  37. # We are on a supported platform, so add the ${gem_name} target
  38. # Note: We include the common files and the platform specific files which are set in robot-vacuum-sample_files.cmake and
  39. # in ${pal_dir}/robot_vacuum_sample_${PAL_PLATFORM_NAME_LOWERCASE}_files.cmake
  40. ly_add_target(
  41. NAME ${gem_name}.Static STATIC
  42. NAMESPACE Gem
  43. FILES_CMAKE
  44. robot_vacuum_sample_files.cmake
  45. ${pal_dir}/robot_vacuum_sample_${PAL_PLATFORM_NAME_LOWERCASE}_files.cmake
  46. INCLUDE_DIRECTORIES
  47. PUBLIC
  48. Include
  49. BUILD_DEPENDENCIES
  50. PRIVATE
  51. AZ::AzGameFramework
  52. Gem::Atom_AtomBridge.Static
  53. )
  54. ly_add_target(
  55. NAME ${gem_name} ${PAL_TRAIT_MONOLITHIC_DRIVEN_MODULE_TYPE}
  56. NAMESPACE Gem
  57. FILES_CMAKE
  58. robot_vacuum_sample_shared_files.cmake
  59. ${pal_dir}/robot_vacuum_sample_shared_${PAL_PLATFORM_NAME_LOWERCASE}_files.cmake
  60. INCLUDE_DIRECTORIES
  61. PUBLIC
  62. Include
  63. BUILD_DEPENDENCIES
  64. PRIVATE
  65. Gem::${gem_name}.Static
  66. AZ::AzCore
  67. )
  68. # if enabled, RobotVacuumSample is used by all kinds of applications
  69. ly_create_alias(NAME ${gem_name}.Builders NAMESPACE Gem TARGETS Gem::${gem_name})
  70. ly_create_alias(NAME ${gem_name}.Tools NAMESPACE Gem TARGETS Gem::${gem_name})
  71. ly_create_alias(NAME ${gem_name}.Clients NAMESPACE Gem TARGETS Gem::${gem_name})
  72. ly_create_alias(NAME ${gem_name}.Servers NAMESPACE Gem TARGETS Gem::${gem_name})
  73. ################################################################################
  74. # Gem dependencies
  75. ################################################################################
  76. # Query the project name from the nearest project.json file in a directory at or above
  77. # the current one.
  78. # This gem is the project gem and therefore should be part of the project that is using it
  79. o3de_find_ancestor_project_root(project_path project_name "${CMAKE_CURRENT_SOURCE_DIR}")
  80. # If the project name could not be queried from a project.json file, then fallback
  81. # to using the name of the project provided when the project template was instantiated
  82. if (NOT project_name)
  83. set(project_name ${Name})
  84. endif()