darwin_setup_build.sh 519 B

123456789101112131415161718
  1. #!/bin/bash
  2. # A `realpath` alternative using the default C implementation.
  3. filepath() {
  4. [[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"
  5. }
  6. REPO_ROOT="$(dirname $(dirname $(dirname $(filepath $0))))"
  7. cd $REPO_ROOT
  8. # The order of these scripts matters.
  9. # The more foundational frameworks should be set up last.
  10. Scripts/CI/compute_setup.sh
  11. Scripts/CI/openattributegraph_setup.sh
  12. Scripts/CI/openrenderbox_setup.sh
  13. Scripts/CI/opencoregraphics_setup.sh
  14. Scripts/CI/openobservation_setup.sh
  15. Scripts/CI/framework_setup.sh