mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2024-11-15 21:25:44 +08:00
fc91502162
* Removes dependency on QtX11Extras and implements placeholder solution with QtGUI private API * Fixes CMakeLists.txt to work with Qt5 and Qt6 * Removes all other uses of X11extras * Renames and moves x11 methods into ads::internal * Fixes typo * Adds gui-private to src.pro
21 lines
279 B
Plaintext
21 lines
279 B
Plaintext
|
|
CONFIG(debug, debug|release){
|
|
win32 {
|
|
LIBS += -lqtadvanceddockingd
|
|
}
|
|
else:mac {
|
|
LIBS += -lqtadvanceddocking_debug
|
|
}
|
|
else {
|
|
LIBS += -lqtadvanceddocking
|
|
}
|
|
}
|
|
else{
|
|
LIBS += -lqtadvanceddocking
|
|
}
|
|
|
|
|
|
unix:!macx {
|
|
LIBS += -lxcb
|
|
}
|