vnote/libs/vtitlebar/vtitlebar_export.pri
Le Tan 52702a32e9 hard days for VNoteX project
Never say "refactor" again!!!
2020-11-28 23:10:43 +08:00

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
}