123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- #
- # 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
- #
- #
- o3de_pal_dir(pal_dir ${CMAKE_CURRENT_LIST_DIR}/Platform/${PAL_PLATFORM_NAME} "${gem_restricted_path}" "${gem_path}" "${gem_parent_relative_path}")
- include(${pal_dir}/PAL_${PAL_PLATFORM_NAME_LOWERCASE}.cmake) #for PAL_TRAIT_NVCLOTH Traits
- if(PAL_TRAIT_NVCLOTH_USE_STUB)
- include(nvcloth_stub.cmake)
- return()
- endif()
- ly_add_target(
- NAME ${gem_name}.Static STATIC
- NAMESPACE Gem
- FILES_CMAKE
- nvcloth_files.cmake
- INCLUDE_DIRECTORIES
- PRIVATE
- Include
- Source
- BUILD_DEPENDENCIES
- PUBLIC
- 3rdParty::NvCloth
- AZ::AzFramework
- Gem::CommonFeaturesAtom.Public
- PRIVATE
- Gem::EMotionFXStaticLib
- )
- ly_add_target(
- NAME ${gem_name} ${PAL_TRAIT_MONOLITHIC_DRIVEN_MODULE_TYPE}
- NAMESPACE Gem
- OUTPUT_NAME ${gem_name}.Gem
- FILES_CMAKE
- nvcloth_shared_files.cmake
- INCLUDE_DIRECTORIES
- PUBLIC
- Include
- PRIVATE
- Source
- BUILD_DEPENDENCIES
- PUBLIC
- AZ::AzCore
- PRIVATE
- Gem::${gem_name}.Static
- )
- # Inject the gem name into the Module source file
- ly_add_source_properties(
- SOURCES
- Source/Module.cpp
- PROPERTY COMPILE_DEFINITIONS
- VALUES
- O3DE_GEM_NAME=${gem_name}
- O3DE_GEM_VERSION=${gem_version})
- # use the NvCloth module in clients and servers:
- ly_create_alias(NAME ${gem_name}.Clients NAMESPACE Gem TARGETS Gem::${gem_name})
- ly_create_alias(NAME ${gem_name}.Servers NAMESPACE Gem TARGETS Gem::${gem_name})
- ly_create_alias(NAME ${gem_name}.Unified NAMESPACE Gem TARGETS Gem::${gem_name})
- # Add each "dependencies" entry from the NvCloth gem.json as a dependency to the
- # NvCloth Clients, Servers and Unified targets
- o3de_add_variant_dependencies_for_gem_dependencies(GEM_NAME ${gem_name} VARIANTS Clients Servers Unified)
- if(PAL_TRAIT_BUILD_HOST_TOOLS)
- ly_add_target(
- NAME ${gem_name}.Editor.Static STATIC
- NAMESPACE Gem
- AUTOMOC
- FILES_CMAKE
- nvcloth_editor_files.cmake
- INCLUDE_DIRECTORIES
- PRIVATE
- .
- Include
- Source
- COMPILE_DEFINITIONS
- PRIVATE
- NVCLOTH_EDITOR
- BUILD_DEPENDENCIES
- PUBLIC
- Gem::${gem_name}.Static
- AZ::AzToolsFramework
- AZ::SceneCore
- )
- ly_add_target(
- NAME ${gem_name}.Editor GEM_MODULE
- NAMESPACE Gem
- OUTPUT_NAME ${gem_name}.Editor.Gem
- FILES_CMAKE
- nvcloth_editor_shared_files.cmake
- INCLUDE_DIRECTORIES
- PRIVATE
- Include
- Source
- COMPILE_DEFINITIONS
- PRIVATE
- NVCLOTH_EDITOR
- BUILD_DEPENDENCIES
- PRIVATE
- Gem::${gem_name}.Editor.Static
- )
- # use the NvCloth.Editor module in dev 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)
- # Add each "dependencies" entry from the NvCloth gem.json as a dependency to the NvCloth Tools and Builders targets
- o3de_add_variant_dependencies_for_gem_dependencies(GEM_NAME ${gem_name} VARIANTS Tools Builders)
- endif()
- ################################################################################
- # Tests
- ################################################################################
- if(PAL_TRAIT_BUILD_TESTS_SUPPORTED)
- ly_add_target(
- NAME ${gem_name}.Tests ${PAL_TRAIT_TEST_TARGET_TYPE}
- NAMESPACE Gem
- OUTPUT_NAME ${gem_name}.Tests.Gem
- FILES_CMAKE
- nvcloth_tests_files.cmake
- INCLUDE_DIRECTORIES
- PRIVATE
- Include
- Tests
- Source
- BUILD_DEPENDENCIES
- PRIVATE
- AZ::AzTestShared
- AZ::AzTest
- Gem::${gem_name}.Static
- Gem::EMotionFXStaticLib
- Gem::EMotionFX.Tests.Static
- RUNTIME_DEPENDENCIES
- Gem::EMotionFX
- )
- ly_add_googletest(
- NAME Gem::${gem_name}.Tests
- LABELS REQUIRES_tiaf
- )
-
- if(PAL_TRAIT_BUILD_HOST_TOOLS)
- ly_add_target(
- NAME ${gem_name}.Editor.Tests ${PAL_TRAIT_TEST_TARGET_TYPE}
- NAMESPACE Gem
- OUTPUT_NAME ${gem_name}.Editor.Tests.Gem
- FILES_CMAKE
- nvcloth_editor_tests_files.cmake
- INCLUDE_DIRECTORIES
- PRIVATE
- Include
- Tests
- Source
- COMPILE_DEFINITIONS
- PRIVATE
- NVCLOTH_EDITOR
- BUILD_DEPENDENCIES
- PRIVATE
- AZ::AzTestShared
- AZ::AzTest
- AZ::AzToolsFrameworkTestCommon
- Gem::${gem_name}.Editor.Static
- Gem::EMotionFX.Editor.Static
- Gem::EMotionFX.Tests.Static
- RUNTIME_DEPENDENCIES
- Gem::EMotionFX.Editor
- )
- ly_add_googletest(
- NAME Gem::${gem_name}.Editor.Tests
- LABELS REQUIRES_tiaf
- )
- endif()
- endif()
|