123456789101112131415 |
- #!/bin/bash
- # Builds all dependencies which are no clean CMake projects, so using FetchContent is not possible.
- if [ $1 == "release" ]; then
- OPTIONS="release"
- else
- OPTIONS=""
- fi
- thirdparty/qt.sh $OPTIONS
- if [ $OPTIONS == "release" ]; then
- thirdparty/openscenegraph.sh release
- thirdparty/lib3mf.sh release
- fi
|