darwin_setup_build.sh 522 B

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