Disable AWS gems for Linux and Android release monolithic builds (#1592)

* Disable AWS gems for Linux and Android release monolithic builds

* Update AWS gems add condition
This commit is contained in:
amzn-hdoke
2021-06-25 16:37:41 -07:00
committed by GitHub
parent 4a3f4f6f14
commit d617e8765b
+10 -3
View File
@@ -48,7 +48,14 @@ set(ENABLED_GEMS
LyShine
HttpRequestor
Atom_AtomBridge
AWSCore
AWSClientAuth
AWSMetrics
)
# TODO remove conditional add once AWSNativeSDK libs are fixed for Android and Linux Monolithic release.
set(aws_excluded_platforms Linux Android)
if (NOT (LY_MONOLITHIC_GAME AND ${PAL_PLATFORM_NAME} IN_LIST aws_excluded_platforms))
list(APPEND ENABLED_GEMS
AWSCore
AWSClientAuth
AWSMetrics
)
endif()