CMakeLists.txt 972 B

12345678910111213141516171819202122232425262728293031
  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. if(NOT PROJECT_NAME)
  9. cmake_minimum_required(VERSION 3.19)
  10. project(AtomSampleViewer
  11. LANGUAGES C CXX
  12. VERSION 1.0.0.0
  13. )
  14. include(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. add_subdirectory(Standalone)
  27. endif()