1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-29 07:24:13 +01:00

QtQuick2 DLLs copied, fixed directory name with missing period also

This commit is contained in:
Fredrik Larrson 2013-11-16 04:11:53 +11:00
parent 85387f000a
commit d868c12a09

View File

@ -72,7 +72,7 @@ equals(copydata, 1) {
# create QtQuick2 plugin directories
QT_QUICK2_DIRS = qtquick \
qtquick2 \
qtquick.2 \
qtquick/controls \
qtquick/dialogs \
qtquick/layouts \
@ -85,6 +85,14 @@ equals(copydata, 1) {
data_copy.commands += -@$(MKDIR) $$targetPath(\"$$GCS_APP_PATH/$$dir\") $$addNewline()
}
# copy QtQuick plugin DLLs
QT_QUICK2_DLLS = QtQuick.2/qtquick2plugin$${DS}.dll \
QtQuick.2/plugins.qmltypes \
QtQuick.2/qmldir
for(dll, QT_QUICK2_DLLS) {
data_copy.commands += $(COPY_FILE) $$targetPath(\"$$[QT_INSTALL_QML]/$$dll\") $$targetPath(\"$$GCS_APP_PATH/$$dll\") $$addNewline()
}
# copy MinGW DLLs
MINGW_DLLS = SDL.dll
for(dll, MINGW_DLLS) {