fix(build): broken MacOS build (#533)
moved DESTDIR in sandbox.pro above copydata command as it was breaking the build process on MacOS
This commit is contained in:
parent
76eac6fb72
commit
55901cf0a3
|
@ -22,6 +22,7 @@ SOURCES += \
|
||||||
}
|
}
|
||||||
|
|
||||||
TARGET = sandboxapp
|
TARGET = sandboxapp
|
||||||
|
DESTDIR = $$PWD/bin
|
||||||
|
|
||||||
macx {
|
macx {
|
||||||
CONFIG -= app_bundle
|
CONFIG -= app_bundle
|
||||||
|
@ -60,8 +61,6 @@ ios {
|
||||||
RESOURCES += qml.qrc \
|
RESOURCES += qml.qrc \
|
||||||
$$PWD/../statusq.qrc
|
$$PWD/../statusq.qrc
|
||||||
|
|
||||||
DESTDIR = $$PWD/bin
|
|
||||||
|
|
||||||
# Default rules for deployment.
|
# Default rules for deployment.
|
||||||
qnx: target.path = /tmp/$${TARGET}/bin
|
qnx: target.path = /tmp/$${TARGET}/bin
|
||||||
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
||||||
|
|
Loading…
Reference in New Issue