|
@@ -7,8 +7,8 @@
|
|
|
# Get the platform specific folder ${pal_dir} for the current folder: ${CMAKE_CURRENT_LIST_DIR}/Platform/${PAL_PLATFORM_NAME}
|
|
|
# Note: o3de_pal_dir will take care of the details for us, as this may be a restricted platform
|
|
|
# in which case it will see if that platform is present here or in the restricted folder.
|
|
|
-# i.e. It could here in our gem : Gems/Georeferencing/Code/Platform/<platorm_name> or
|
|
|
-# <restricted_folder>/<platform_name>/Gems/Georeferencing/Code
|
|
|
+# i.e. It could here in our gem : Gems/LevelGeoreferencing/Code/Platform/<platorm_name> or
|
|
|
+# <restricted_folder>/<platform_name>/Gems/LevelGeoreferencing/Code
|
|
|
o3de_pal_dir(pal_dir ${CMAKE_CURRENT_LIST_DIR}/Platform/${PAL_PLATFORM_NAME} "${gem_restricted_path}" "${gem_path}" "${gem_parent_relative_path}")
|
|
|
|
|
|
# Now that we have the platform abstraction layer (PAL) folder for this folder, thats where we will find the
|
|
@@ -17,7 +17,7 @@ o3de_pal_dir(pal_dir ${CMAKE_CURRENT_LIST_DIR}/Platform/${PAL_PLATFORM_NAME} "${
|
|
|
include(${pal_dir}/PAL_${PAL_PLATFORM_NAME_LOWERCASE}.cmake)
|
|
|
|
|
|
# Check to see if building the Gem Modules are supported for the current platform
|
|
|
-if(NOT PAL_TRAIT_GEOREFERENCING_SUPPORTED)
|
|
|
+if(NOT PAL_TRAIT_LEVELGEOREFERENCING_SUPPORTED)
|
|
|
return()
|
|
|
endif()
|
|
|
|
|
@@ -193,7 +193,7 @@ endif()
|
|
|
# See if globally, tests are supported
|
|
|
if(PAL_TRAIT_BUILD_TESTS_SUPPORTED)
|
|
|
# We globally support tests, see if we support tests on this platform for ${gem_name}.Tests
|
|
|
- if(PAL_TRAIT_GEOREFERENCING_TEST_SUPPORTED)
|
|
|
+ if(PAL_TRAIT_LEVELGEOREFERENCING_TEST_SUPPORTED)
|
|
|
# We support ${gem_name}.Tests on this platform, add dependency on the Private Object target
|
|
|
ly_add_target(
|
|
|
NAME ${gem_name}.Tests ${PAL_TRAIT_TEST_TARGET_TYPE}
|
|
@@ -222,7 +222,7 @@ if(PAL_TRAIT_BUILD_TESTS_SUPPORTED)
|
|
|
# If we are a host platform we want to add tools test like editor tests here
|
|
|
if(PAL_TRAIT_BUILD_HOST_TOOLS)
|
|
|
# We are a host platform, see if Editor tests are supported on this platform
|
|
|
- if(PAL_TRAIT_GEOREFERENCING_EDITOR_TEST_SUPPORTED)
|
|
|
+ if(PAL_TRAIT_LEVELGEOREFERENCING_EDITOR_TEST_SUPPORTED)
|
|
|
# We support ${gem_name}.Editor.Tests on this platform, add ${gem_name}.Editor.Tests target which depends on
|
|
|
# private ${gem_name}.Editor.Private.Object target
|
|
|
ly_add_target(
|