You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
o3de/Gems/AWSGameLift/Code/AWSGameLiftClient/CMakeLists.txt

90 lines
2.9 KiB
CMake

#
# All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
# its licensors.
#
# For complete copyright and license terms please see the LICENSE at the root of this
# distribution (the "License"). All use of this software is governed by the License,
# or, if provided, by the license below or the license accompanying this file. Do not
# remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#
set(awsgameliftclient_compile_definition $<IF:$<CONFIG:release>,AWSGAMELIFT_RELEASE,AWSGAMELIFT_DEV>)
ly_add_target(
NAME AWSGameLift.Client.Static STATIC
NAMESPACE Gem
FILES_CMAKE
awsgamelift_client_files.cmake
INCLUDE_DIRECTORIES
PUBLIC
Include
PRIVATE
Source
../AWSGameLiftCommon/Source
COMPILE_DEFINITIONS
PRIVATE
${awsgameliftclient_compile_definition}
BUILD_DEPENDENCIES
PRIVATE
AZ::AzCore
AZ::AzFramework
Gem::AWSCore
3rdParty::AWSNativeSDK::GameLiftClient
)
ly_add_target(
NAME AWSGameLift.Clients ${PAL_TRAIT_MONOLITHIC_DRIVEN_MODULE_TYPE}
NAMESPACE Gem
FILES_CMAKE
awsgamelift_client_shared_files.cmake
INCLUDE_DIRECTORIES
PRIVATE
Source
BUILD_DEPENDENCIES
PRIVATE
AZ::AzCore
3rdParty::AWSNativeSDK::GameLiftClient
PUBLIC
Gem::AWSGameLift.Client.Static
RUNTIME_DEPENDENCIES
Gem::AWSCore
)
# Load the "Gem::AWSGameLift" module in all types of applications.
if (PAL_TRAIT_BUILD_HOST_TOOLS)
ly_create_alias(NAME AWSGameLift.Tools NAMESPACE Gem TARGETS Gem::AWSGameLift.Clients)
ly_create_alias(NAME AWSGameLift.Builders NAMESPACE Gem TARGETS Gem::AWSGameLift.Clients)
endif()
################################################################################
# Tests
################################################################################
if(PAL_TRAIT_BUILD_TESTS_SUPPORTED)
ly_add_target(
NAME AWSGameLift.Client.Tests ${PAL_TRAIT_TEST_TARGET_TYPE}
NAMESPACE Gem
FILES_CMAKE
awsgamelift_client_tests_files.cmake
INCLUDE_DIRECTORIES
PRIVATE
Include
Tests
Source
../AWSGameLiftCommon/Source
BUILD_DEPENDENCIES
PRIVATE
AZ::AzCore
AZ::AzFramework
AZ::AzTest
Gem::AWSCore
Gem::AWSGameLift.Client.Static
3rdParty::AWSNativeSDK::GameLiftClient
AZ::AWSNativeSDKInit
)
# Add AWSGameLift.Client.Tests to googletest
ly_add_googletest(
NAME Gem::AWSGameLift.Client.Tests
)
endif()