build-dependencies-first.sh 348 B

12345678910111213141516
  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. thirdparty/json.sh release
  13. fi