1234567891011121314151617181920212223242526272829303132333435 |
- #
- # 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(PAL_TRAIT_BUILD_HOST_TOOLS)
- ly_add_target(
- NAME ${gem_name}.Editor ${PAL_TRAIT_MONOLITHIC_DRIVEN_MODULE_TYPE}
- NAMESPACE Gem
- AUTORCC
- FILES_CMAKE
- atomrenderoptions_files.cmake
- INCLUDE_DIRECTORIES
- PRIVATE
- Source
- BUILD_DEPENDENCIES
- PRIVATE
- AZ::AzCore
- AZ::AzToolsFramework
- Gem::Atom_RPI.Public
- )
- # 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})
- endif()
|