xbus modifies library search path in order for QtDBus to find libdbus

refs #615
This commit is contained in:
Roland Winklmeier
2016-04-23 22:53:14 +02:00
parent d4248d2661
commit 21fe8d46ea
5 changed files with 75 additions and 20 deletions

View File

@@ -74,8 +74,13 @@ macx {
XBUS_DIR = xbus
XBUS_DESTDIR = $$DestRoot/$$XBUS_DIR
} else {
equals(WORD_SIZE,64): XBUS_DIR = xbus/64
equals(WORD_SIZE,32): XBUS_DIR = xbus
equals(WORD_SIZE,64) {
XBUS_DIR = xbus/64
DEFINES += WORD_SIZE_64
}
equals(WORD_SIZE,32) {
XBUS_DIR = xbus
}
XBUS_DESTDIR = $$DestRoot/$$XBUS_DIR
}