| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #
- # 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}/Source/Platform/${PAL_PLATFORM_NAME} ${O3DE_ENGINE_RESTRICTED_PATH} ${LY_ROOT_FOLDER})
- set(common_dir ${CMAKE_CURRENT_LIST_DIR}/Source/Platform/Common)
- ly_add_target(
- NAME TestImpact.Runtime.Common.Headers HEADERONLY
- NAMESPACE AZ
- FILES_CMAKE
- testimpactframework_runtime_common_headers_files.cmake
- INCLUDE_DIRECTORIES
- INTERFACE
- Include/Headers
- BUILD_DEPENDENCIES
- INTERFACE
- AZ::AzCore
- )
- ly_add_target(
- NAME TestImpact.Runtime.Common.Static STATIC
- NAMESPACE AZ
- FILES_CMAKE
- testimpactframework_runtime_common_files.cmake
- ${pal_dir}/platform_${PAL_PLATFORM_NAME_LOWERCASE}_files.cmake
- PLATFORM_INCLUDE_FILES
- ${common_dir}/${PAL_TRAIT_COMPILER_ID}/testimpactframework_${PAL_TRAIT_COMPILER_ID_LOWERCASE}.cmake
- INCLUDE_DIRECTORIES
- PRIVATE
- Source
- PUBLIC
- Include/Static
- BUILD_DEPENDENCIES
- PUBLIC
- TestImpact.Runtime.Common.Headers
- )
|