CMakeLists.txt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. ly_add_target(
  9. NAME ${gem_name}.Static STATIC
  10. NAMESPACE Gem
  11. FILES_CMAKE
  12. atom_component_debugcamera_files.cmake
  13. INCLUDE_DIRECTORIES
  14. PRIVATE
  15. Source
  16. PUBLIC
  17. Include
  18. BUILD_DEPENDENCIES
  19. PUBLIC
  20. AZ::AtomCore
  21. AZ::AzCore
  22. AZ::AzFramework
  23. Gem::Atom_RPI.Public
  24. )
  25. ly_add_target(
  26. NAME ${gem_name} ${PAL_TRAIT_MONOLITHIC_DRIVEN_MODULE_TYPE}
  27. NAMESPACE Gem
  28. FILES_CMAKE
  29. atom_component_debugcamera_shared_files.cmake
  30. INCLUDE_DIRECTORIES
  31. PRIVATE
  32. Source
  33. PUBLIC
  34. Include
  35. BUILD_DEPENDENCIES
  36. PRIVATE
  37. Gem::${gem_name}.Static
  38. )
  39. # Inject the gem name into the Module source file
  40. ly_add_source_properties(
  41. SOURCES
  42. Source/Module.cpp
  43. PROPERTY COMPILE_DEFINITIONS
  44. VALUES
  45. O3DE_GEM_NAME=${gem_name}
  46. O3DE_GEM_VERSION=${gem_version})