# # 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 # # if (NOT PAL_TRAIT_BUILD_HOST_TOOLS) return() endif() ly_add_target( NAME ${gem_name}.Static STATIC NAMESPACE Gem FILES_CMAKE sceneloggingexample_files.cmake INCLUDE_DIRECTORIES PRIVATE . BUILD_DEPENDENCIES PUBLIC AZ::AzCore AZ::SceneCore Legacy::CryCommon ) ly_add_target( NAME ${gem_name} ${PAL_TRAIT_MONOLITHIC_DRIVEN_MODULE_TYPE} NAMESPACE Gem FILES_CMAKE sceneloggingexample_shared_files.cmake INCLUDE_DIRECTORIES PRIVATE . BUILD_DEPENDENCIES PRIVATE Gem::${gem_name}.Static ) # Inject the gem name into the Module source file ly_add_source_properties( SOURCES SceneLoggingExampleModule.cpp PROPERTY COMPILE_DEFINITIONS VALUES O3DE_GEM_NAME=${gem_name} O3DE_GEM_VERSION=${gem_version}) # the ${gem_name} module above is only used in Builders and Tools by default. ly_create_alias(NAME ${gem_name}.Builders NAMESPACE Gem TARGETS Gem::${gem_name}) ly_create_alias(NAME ${gem_name}.Tools NAMESPACE Gem TARGETS Gem::${gem_name})