123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- #
- # Copyright (c) Contributors to the Open 3D Engine Project.
- # For complete copyright and license terms please see the LICENSE at the root of this distribution.
- #
- # SPDX-License-Identifier: Apache-2.0 OR MIT
- #
- #
- ly_add_target(
- NAME ${gem_name} ${PAL_TRAIT_MONOLITHIC_DRIVEN_MODULE_TYPE}
- NAMESPACE Gem
- FILES_CMAKE
- sceneprocessing_files.cmake
- INCLUDE_DIRECTORIES
- PUBLIC
- Include
- BUILD_DEPENDENCIES
- PRIVATE
- AZ::AzCore
- )
- # Inject the gem name into the Module source file
- ly_add_source_properties(
- SOURCES
- Source/SceneProcessingModuleStub.cpp
- PROPERTY COMPILE_DEFINITIONS
- VALUES
- O3DE_GEM_NAME=${gem_name}
- O3DE_GEM_VERSION=${gem_version})
- if (PAL_TRAIT_BUILD_HOST_TOOLS)
- ly_add_target(
- NAME ${gem_name}.Editor.Static STATIC
- NAMESPACE Gem
- AUTOMOC
- FILES_CMAKE
- sceneprocessing_editor_static_files.cmake
- INCLUDE_DIRECTORIES
- PRIVATE
- Source
- .
- PUBLIC
- Include
- BUILD_DEPENDENCIES
- PUBLIC
- 3rdParty::Qt::Widgets
- 3rdParty::mikkelsen
- AZ::AzCore
- AZ::SceneCore
- AZ::SceneData
- AZ::AzFramework
- AZ::SceneBuilder
- AZ::AssetBuilderSDK
- )
- ly_add_target(
- NAME ${gem_name}.Editor GEM_MODULE
- NAMESPACE Gem
- FILES_CMAKE
- sceneprocessing_editor_files.cmake
- INCLUDE_DIRECTORIES
- PRIVATE
- Source
- .
- PUBLIC
- Include
- BUILD_DEPENDENCIES
- PRIVATE
- Gem::${gem_name}.Editor.Static
- RUNTIME_DEPENDENCIES
- AZ::SceneCore
- AZ::SceneData
- AZ::SceneUI
- )
- # Inject the gem name into the Module source file
- ly_add_source_properties(
- SOURCES
- Source/SceneProcessingModule.cpp
- PROPERTY COMPILE_DEFINITIONS
- VALUES
- O3DE_GEM_NAME=${gem_name}
- O3DE_GEM_VERSION=${gem_version})
- # the ${gem_name}.Editor module above is only used in Builders and Tools.
- ly_create_alias(NAME ${gem_name}.Builders NAMESPACE Gem TARGETS Gem::${gem_name}.Editor)
- ly_create_alias(NAME ${gem_name}.Tools NAMESPACE Gem TARGETS Gem::${gem_name}.Editor)
- # ${gem_name} Gem is only used in Tools and builders and is a requirement for the Editor and AssetProcessor
- endif()
- ################################################################################
- # Tests
- ################################################################################
- if(PAL_TRAIT_BUILD_TESTS_SUPPORTED)
- ly_add_target(
- NAME ${gem_name}.Tests ${PAL_TRAIT_TEST_TARGET_TYPE}
- NAMESPACE Gem
- FILES_CMAKE
- sceneprocessing_tests_files.cmake
- INCLUDE_DIRECTORIES
- PRIVATE
- Tests
- BUILD_DEPENDENCIES
- PRIVATE
- AZ::AzTest
- RUNTIME_DEPENDENCIES
- Gem::${gem_name}
- )
- # Commented out as currently there are no ${gem_name} tests
- # ly_add_googletest(
- # NAME Gem::${gem_name}.Tests
- # )
- if (PAL_TRAIT_BUILD_HOST_TOOLS)
- ly_add_target(
- NAME ${gem_name}.Editor.Tests ${PAL_TRAIT_TEST_TARGET_TYPE}
- NAMESPACE Gem
- FILES_CMAKE
- sceneprocessing_editor_tests_files.cmake
- INCLUDE_DIRECTORIES
- PRIVATE
- Tests
- Source
- BUILD_DEPENDENCIES
- PRIVATE
- Gem::${gem_name}.Editor.Static
- AZ::AzTest
- AZ::SceneData
- AZ::AzToolsFrameworkTestCommon
- )
- ly_add_googletest(
- NAME Gem::${gem_name}.Editor.Tests
- LABELS REQUIRES_tiaf
- )
- endif()
- endif()
|