1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #
- # 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}.Static STATIC
- NAMESPACE Gem
- FILES_CMAKE
- imguiatom_files.cmake
- INCLUDE_DIRECTORIES
- PRIVATE
- Source
- BUILD_DEPENDENCIES
- PUBLIC
- AZ::AtomCore
- AZ::AzCore
- Gem::ImGui.Static
- Gem::Atom_Feature_Common.Public
- )
- ly_add_target(
- NAME ${gem_name} ${PAL_TRAIT_MONOLITHIC_DRIVEN_MODULE_TYPE}
- NAMESPACE Gem
- FILES_CMAKE
- imguiatom_shared_files.cmake
- INCLUDE_DIRECTORIES
- PRIVATE
- Source
- BUILD_DEPENDENCIES
- PRIVATE
- AZ::AzFramework
- Gem::${gem_name}.Static
- )
- # Inject the gem name into the Module source file
- ly_add_source_properties(
- SOURCES
- Source/ImguiAtomModule.cpp
- PROPERTY COMPILE_DEFINITIONS
- VALUES
- O3DE_GEM_NAME=${gem_name}
- O3DE_GEM_VERSION=${gem_version})
|