CMakeLists.txt 479 B

123456789101112131415161718
  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.20)
  10. include(cmake/EngineFinder.cmake OPTIONAL)
  11. find_package(o3de REQUIRED)
  12. project(Paper_Kid
  13. LANGUAGES C CXX
  14. VERSION 1.0.0.0
  15. )
  16. o3de_initialize()
  17. endif()