Seprate path for win and others for libnut

This commit is contained in:
Hamed Masafi 2019-02-27 14:49:05 +03:30
parent 3cacbfc72b
commit 5ac713dd23
1 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,9 @@
CONFIG(debug,debug|release): LIBDIR = $$absolute_path($$OUT_PWD/../../src/debug)
CONFIG(release,debug|release): LIBDIR = $$absolute_path($$OUT_PWD/../../src/release)
win32 {
CONFIG(debug,debug|release): LIBDIR = $$absolute_path($$OUT_PWD/../../src/debug)
CONFIG(release,debug|release): LIBDIR = $$absolute_path($$OUT_PWD/../../src/release)
} else {
LIBDIR = $$absolute_path($$OUT_PWD/../../src)
}
LIBS += -L$$LIBDIR -lnut