Nut/test/common/nut-lib.pri

12 lines
437 B
Plaintext
Raw Normal View History

2019-02-27 00:07:14 +08:00
win32 {
2019-02-27 03:51:29 +08:00
CONFIG(debug,debug|release): LIBDIR = $$absolute_path($$OUT_PWD/../../src/debug)
CONFIG(release,debug|release): LIBDIR = $$absolute_path($$OUT_PWD/../../src/release)
2019-02-27 00:07:14 +08:00
} else {
2019-02-27 03:51:29 +08:00
CONFIG(debug,debug|release): LIBDIR = $$absolute_path($$OUT_PWD/../../debug)
CONFIG(release,debug|release): LIBDIR = $$absolute_path($$OUT_PWD/../../release)
2019-02-27 00:07:14 +08:00
}
2019-02-27 03:51:29 +08:00
LIBS += -L$$LIBDIR -lnut
2019-02-27 00:07:14 +08:00
INCLUDEPATH += $$PWD/../../src $$PWD/../common