Fix deprecations and weird bugs
[novacoin.git] / dependencies / qt / setup.sh
index 0e3b6a9..0162c4d 100755 (executable)
@@ -7,11 +7,13 @@ if [[ ! $(which git) ]]; then
     exit -1
 fi
 
-git clone -b 5.15.2 https://github.com/qt/qtbase.git ${ROOT}/qtbase
-git clone -b 5.15.2 https://github.com/qt/qttools.git ${ROOT}/qttools
-git clone -b 5.15.2 https://github.com/qt/qttranslations.git ${ROOT}/qttranslations
-git clone -b 5.15.2 https://github.com/qt/qtdeclarative.git ${ROOT}/qtdeclarative
+git clone -b 5.15 https://github.com/qt/qtbase.git ${ROOT}/qtbase
+git clone -b 5.15 https://github.com/qt/qttools.git ${ROOT}/qttools
+git clone -b 5.15 https://github.com/qt/qttranslations.git ${ROOT}/qttranslations
+git clone -b 5.15 https://github.com/qt/qtdeclarative.git ${ROOT}/qtdeclarative
 
 cd ${ROOT}/qtbase
 patch -s -p1 < ${ROOT}/stack_protector.patch
+cd ${ROOT}/qtdeclarative
+patch -s -p1 < ${ROOT}/scenegraph.patch
 cd ${ROOT}