CMakeLists.txt 1020 B

1234567891011121314151617181920212223242526272829303132
  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. include(cmake/CompilerSettings.cmake)
  11. project(AtomSampleViewer
  12. LANGUAGES C CXX
  13. VERSION 1.0.0.0
  14. )
  15. include(cmake/EngineFinder.cmake OPTIONAL)
  16. find_package(o3de REQUIRED)
  17. o3de_initialize()
  18. else()
  19. # Add the project_name to global LY_PROJECTS_TARGET_NAME property
  20. file(READ "${CMAKE_CURRENT_LIST_DIR}/project.json" project_json)
  21. string(JSON project_target_name ERROR_VARIABLE json_error GET ${project_json} "project_name")
  22. if(json_error)
  23. message(FATAL_ERROR "Unable to read key 'project_name' from 'project.json'")
  24. endif()
  25. set_property(GLOBAL APPEND PROPERTY LY_PROJECTS_TARGET_NAME ${project_target_name})
  26. add_subdirectory(Gem)
  27. add_subdirectory(Standalone)
  28. endif()