CMakeLists.txt 743 B

123456789101112131415161718192021222324252627
  1. #
  2. # Copyright (c) Contributors to the Open 3D Engine Project.
  3. # For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. #
  5. # SPDX-License-Identifier: Apache-2.0 OR MIT
  6. #
  7. #
  8. o3de_pal_dir(pal_dir ${CMAKE_CURRENT_LIST_DIR}/Platform/${PAL_PLATFORM_NAME} ${O3DE_ENGINE_RESTRICTED_PATH} ${LY_ROOT_FOLDER})
  9. ly_add_target(
  10. NAME RemoteConsoleCore STATIC
  11. NAMESPACE Legacy
  12. FILES_CMAKE
  13. Core/remoteconsolecore_files.cmake
  14. ${pal_dir}/platform_${PAL_PLATFORM_NAME_LOWERCASE}_files.cmake
  15. INCLUDE_DIRECTORIES
  16. PUBLIC
  17. Core
  18. ${pal_dir}
  19. BUILD_DEPENDENCIES
  20. PRIVATE
  21. AZ::AzCore
  22. AZ::AzFramework
  23. Legacy::CryCommon
  24. )