build-dependencies-first.sh 319 B

123456789101112131415
  1. #!/bin/bash
  2. # Builds all dependencies which are no clean CMake projects, so using FetchContent is not possible.
  3. if [ $1 == "release" ]; then
  4. OPTIONS="release"
  5. else
  6. OPTIONS=""
  7. fi
  8. thirdparty/qt.sh $OPTIONS
  9. if [ $OPTIONS == "release" ]; then
  10. thirdparty/openscenegraph.sh release
  11. thirdparty/lib3mf.sh release
  12. fi