Skip to content

Commit

Permalink
Fixed MSVC build
Browse files Browse the repository at this point in the history
  • Loading branch information
githubuser0xFFFF committed Jun 19, 2021
1 parent 511132e commit 487e23e
Showing 1 changed file with 8 additions and 15 deletions.
23 changes: 8 additions & 15 deletions ads.pri
Original file line number Diff line number Diff line change
@@ -1,23 +1,16 @@

lessThan(QT_MAJOR_VERSION, 6) {
CONFIG(debug, debug|release){
win32 {
LIBS += -lqtadvanceddockingd
}
else:mac {
LIBS += -lqtadvanceddocking_debug
}
else {
LIBS += -lqtadvanceddocking
}
CONFIG(debug, debug|release){
win32 {
LIBS += -lqtadvanceddockingd
}
else{
else:mac {
LIBS += -lqtadvanceddocking_debug
}
else {
LIBS += -lqtadvanceddocking
}
}
else {
# qt$$qtLibraryTarget(qtadvanceddocking) does not produce an advanceddockingd.dll file on Windows
# for Qt6 - I don't know if this is a bug and I have to investigate
else{
LIBS += -lqtadvanceddocking
}

Expand Down

0 comments on commit 487e23e

Please sign in to comment.