CMakeLists.txt 988 B

12345678910111213141516171819202122232425262728293031
  1. #
  2. # 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.
  3. #
  4. # SPDX-License-Identifier: Apache-2.0 OR MIT
  5. #
  6. #
  7. if(NOT PROJECT_NAME)
  8. cmake_minimum_required(VERSION 3.19)
  9. include(cmake/CompilerSettings.cmake)
  10. project(MultiplayerSample
  11. LANGUAGES C CXX
  12. VERSION 1.0.0.0
  13. )
  14. include(cmake/EngineFinder.cmake OPTIONAL)
  15. find_package(o3de REQUIRED)
  16. o3de_initialize()
  17. else()
  18. # Add the project_name to global LY_PROJECTS_TARGET_NAME property
  19. file(READ "${CMAKE_CURRENT_LIST_DIR}/project.json" project_json)
  20. string(JSON project_target_name ERROR_VARIABLE json_error GET ${project_json} "project_name")
  21. if(json_error)
  22. message(FATAL_ERROR "Unable to read key 'project_name' from 'project.json'")
  23. endif()
  24. set_property(GLOBAL APPEND PROPERTY LY_PROJECTS_TARGET_NAME ${project_target_name})
  25. add_subdirectory(Gem)
  26. endif()