CMakeLists.txt 493 B

1234567891011121314151617181920
  1. # {BEGIN_LICENSE}
  2. #
  3. # Copyright (c) Contributors to the Open 3D Engine Project.
  4. # For complete copyright and license terms please see the LICENSE at the root of this distribution.
  5. #
  6. # SPDX-License-Identifier: Apache-2.0 OR MIT
  7. #
  8. #
  9. # {END_LICENSE}
  10. if(NOT PROJECT_NAME)
  11. cmake_minimum_required(VERSION 3.22)
  12. include(cmake/EngineFinder.cmake OPTIONAL)
  13. find_package(o3de REQUIRED)
  14. project(${Name}
  15. LANGUAGES C CXX
  16. VERSION 1.0.0.0
  17. )
  18. o3de_initialize()
  19. endif()