1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-20 10:54:14 +01:00

Fix for Utils trying to not include the debug library on OSX and Mac

This commit is contained in:
James Cotton 2011-06-01 13:59:10 -05:00
parent 45244e3df5
commit 8f808df113

View File

@ -1 +1,9 @@
LIBS += -l$$qtLibraryTarget(Utils)
macx {
CONFIG(debug, debug|release):LIBS *= -lUtils_debug
else:LIBS *= -lUtils
} else:win32 {
CONFIG(debug, debug|release):LIBS *= -lUtilsd
else:LIBS *= -lUtils
} else {
LIBS += -l$$qtLibraryTarget(Utils)
}