diff options
author | Arno <arno@disconnect.de> | 2019-11-23 14:22:15 +0100 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2019-11-23 14:22:15 +0100 |
commit | bf04d23abcb015aedb737d204c5713f9f3455e38 (patch) | |
tree | 3db4c62a55a0ad8dd8e47420058dceddb5b435ca | |
parent | 1e3926c2caba595b16c4e03366c39e34c7581238 (diff) | |
download | ShemovCleaner-bf04d23abcb015aedb737d204c5713f9f3455e38.tar.gz ShemovCleaner-bf04d23abcb015aedb737d204c5713f9f3455e38.tar.bz2 ShemovCleaner-bf04d23abcb015aedb737d204c5713f9f3455e38.zip |
Remove windows lib path from project file
MSYS2 doesn't need it, and as a benefit it also builds on linux :)
-rw-r--r-- | ShemovCleaner.pro | 55 |
1 files changed, 27 insertions, 28 deletions
diff --git a/ShemovCleaner.pro b/ShemovCleaner.pro index efdd964..4c336e5 100644 --- a/ShemovCleaner.pro +++ b/ShemovCleaner.pro @@ -6,7 +6,6 @@ TEMPLATE = app TARGET = ShemovCleaner INCLUDEPATH += . QT += sql gui widgets -LIBS += C:/psql/10.1/lib/libpq.lib # The following define makes your compiler warn you if you use any # feature of Qt which has been marked as deprecated (the exact warnings @@ -21,38 +20,38 @@ DEFINES += QT_DEPRECATED_WARNINGS # Input HEADERS += \ - configurationwidget.h \ - filecopier.h \ - filedisplay.h \ - filesorter.h \ - filewidget.h \ - globals.h \ - helper.h \ - origindialog.h \ - shemovcleaner.h \ - torrentdisplay.h \ - torrentparser.h \ - torrentwidget.h \ - viewer.h \ + configurationwidget.h \ + filecopier.h \ + filedisplay.h \ + filesorter.h \ + filewidget.h \ + globals.h \ + helper.h \ + origindialog.h \ + shemovcleaner.h \ + torrentdisplay.h \ + torrentparser.h \ + torrentwidget.h \ + viewer.h \ cachedfiledata.h \ itemselectionwidget.h \ searchdialog.h \ searchview.h SOURCES += \ - configurationwidget.cpp \ - filecopier.cpp \ - filedisplay.cpp \ - filesorter.cpp \ - filewidget.cpp \ - globals.cpp \ - helper.cpp \ - main.cpp \ - origindialog.cpp \ - shemovcleaner.cpp \ - torrentdisplay.cpp \ - torrentparser.cpp \ - torrentwidget.cpp \ - viewer.cpp \ + configurationwidget.cpp \ + filecopier.cpp \ + filedisplay.cpp \ + filesorter.cpp \ + filewidget.cpp \ + globals.cpp \ + helper.cpp \ + main.cpp \ + origindialog.cpp \ + shemovcleaner.cpp \ + torrentdisplay.cpp \ + torrentparser.cpp \ + torrentwidget.cpp \ + viewer.cpp \ cachedfiledata.cpp \ itemselectionwidget.cpp \ searchdialog.cpp \ |