ci_env.x86_64-apple-darwin.sh 404 B

123456789101112131415
  1. # Copyright (c) 2023-2024 Cosmin Truta.
  2. #
  3. # Use, modification and distribution are subject to the MIT License.
  4. # Please see the accompanying file LICENSE_MIT.txt
  5. #
  6. # SPDX-License-Identifier: MIT
  7. export CI_TARGET_ARCH=x86_64
  8. export CI_TARGET_SYSTEM=darwin
  9. export CI_CMAKE_VARS="
  10. -DCMAKE_SYSTEM_NAME=Darwin
  11. -DCMAKE_SYSTEM_PROCESSOR=$CI_TARGET_ARCH
  12. -DCMAKE_OSX_ARCHITECTURES=$CI_TARGET_ARCH
  13. "