mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-06 06:19:52 +08:00
18 lines
655 B
Plaintext
18 lines
655 B
Plaintext
INCLUDEPATH *= $$PWD/src
|
|
|
|
DEPENDPATH *= $$PWD/src
|
|
|
|
OUT_FOLDER = $$absolute_path($$relative_path($$PWD, $$_PRO_FILE_PWD_), $$OUT_PWD)
|
|
win32:CONFIG(release, debug|release) {
|
|
LIBS += $$OUT_FOLDER/release/vtitlebar.lib
|
|
# For static library, we need to add this depends to let Qt re-build the target
|
|
# when there is a change in the library.
|
|
PRE_TARGETDEPS += $$OUT_FOLDER/release/vtitlebar.lib
|
|
} else:win32:CONFIG(debug, debug|release) {
|
|
LIBS += $$OUT_FOLDER/debug/vtitlebar.lib
|
|
PRE_TARGETDEPS += $$OUT_FOLDER/debug/vtitlebar.lib
|
|
} else:unix {
|
|
LIBS += $$OUT_FOLDER/libvtitlebar.a
|
|
PRE_TARGETDEPS += $$OUT_FOLDER/libvtitlebar.a
|
|
}
|