Toolchain_scriptonly_linux.cmake 710 B

12345678910111213141516171819
  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. set(CMAKE_SYSTEM_PROCESSOR "x86_64") # there is no AARCH64 version of the 'no compile toolchain' and this is not set automatically
  9. set(CMAKE_C_COMPILER "/usr/bin/true")
  10. set(CMAKE_CXX_COMPILER "/usr/bin/true")
  11. set(CMAKE_AR "/usr/bin/true")
  12. set(CMAKE_RANLIB "/usr/bin/true")
  13. set(CMAKE_C_COMPILER_ID "Clang")
  14. set(CMAKE_CXX_COMPILER_ID "Clang")
  15. set(CMAKE_C_COMPILER_VERSION 14.0.0)
  16. set(CMAKE_CXX_COMPILER_VERSION 14.0.0)
  17. include(${CMAKE_CURRENT_LIST_DIR}/../Common/Toolchain_scriptonly_common.cmake)