qBittorrent/src/base/base.pri

111 lines
3.6 KiB
Text
Raw Normal View History

HEADERS += \
2015-04-19 18:17:47 +03:00
$$PWD/types.h \
$$PWD/tristatebool.h \
$$PWD/filesystemwatcher.h \
$$PWD/qinisettings.h \
$$PWD/logger.h \
$$PWD/settingsstorage.h \
$$PWD/preferences.h \
2015-04-19 18:17:47 +03:00
$$PWD/iconprovider.h \
$$PWD/http/irequesthandler.h \
$$PWD/http/connection.h \
$$PWD/http/requestparser.h \
$$PWD/http/responsegenerator.h \
$$PWD/http/server.h \
$$PWD/http/types.h \
2015-04-13 19:02:48 +03:00
$$PWD/http/responsebuilder.h \
$$PWD/net/dnsupdater.h \
2015-04-19 18:17:47 +03:00
$$PWD/net/downloadmanager.h \
$$PWD/net/downloadhandler.h \
2015-05-18 17:02:48 +03:00
$$PWD/net/geoipmanager.h \
2015-04-19 18:17:47 +03:00
$$PWD/net/portforwarder.h \
2015-04-13 19:02:48 +03:00
$$PWD/net/reverseresolution.h \
2015-04-19 18:17:47 +03:00
$$PWD/net/smtp.h \
2015-05-18 17:02:48 +03:00
$$PWD/net/private/geoipdatabase.h \
2015-04-19 18:17:47 +03:00
$$PWD/bittorrent/infohash.h \
$$PWD/bittorrent/session.h \
$$PWD/bittorrent/sessionstatus.h \
$$PWD/bittorrent/cachestatus.h \
$$PWD/bittorrent/magneturi.h \
$$PWD/bittorrent/torrentinfo.h \
$$PWD/bittorrent/torrenthandle.h \
$$PWD/bittorrent/peerinfo.h \
$$PWD/bittorrent/trackerentry.h \
$$PWD/bittorrent/tracker.h \
$$PWD/bittorrent/torrentcreatorthread.h \
$$PWD/bittorrent/private/speedmonitor.h \
$$PWD/bittorrent/private/bandwidthscheduler.h \
$$PWD/bittorrent/private/filterparserthread.h \
$$PWD/bittorrent/private/statistics.h \
$$PWD/bittorrent/private/resumedatasavingmanager.h \
2015-10-14 12:31:44 +03:00
$$PWD/rss/rssmanager.h \
$$PWD/rss/rssfeed.h \
$$PWD/rss/rssfolder.h \
$$PWD/rss/rssfile.h \
$$PWD/rss/rssarticle.h \
$$PWD/rss/rssdownloadrule.h \
$$PWD/rss/rssdownloadrulelist.h \
2015-10-17 18:59:04 +03:00
$$PWD/rss/private/rssparser.h \
$$PWD/utils/fs.h \
$$PWD/utils/gzip.h \
$$PWD/utils/misc.h \
2015-04-19 18:17:47 +03:00
$$PWD/utils/string.h \
2015-07-03 22:22:14 +03:00
$$PWD/unicodestrings.h \
$$PWD/torrentfileguard.h \
2015-04-19 18:17:47 +03:00
$$PWD/torrentfilter.h \
$$PWD/scanfoldersmodel.h \
$$PWD/searchengine.h
SOURCES += \
2015-04-19 18:17:47 +03:00
$$PWD/tristatebool.cpp \
$$PWD/filesystemwatcher.cpp \
$$PWD/logger.cpp \
$$PWD/settingsstorage.cpp \
$$PWD/preferences.cpp \
2015-04-19 18:17:47 +03:00
$$PWD/iconprovider.cpp \
$$PWD/http/connection.cpp \
$$PWD/http/requestparser.cpp \
$$PWD/http/responsegenerator.cpp \
$$PWD/http/server.cpp \
2015-04-13 19:02:48 +03:00
$$PWD/http/responsebuilder.cpp \
$$PWD/net/dnsupdater.cpp \
2015-04-19 18:17:47 +03:00
$$PWD/net/downloadmanager.cpp \
$$PWD/net/downloadhandler.cpp \
2015-05-18 17:02:48 +03:00
$$PWD/net/geoipmanager.cpp \
2015-04-19 18:17:47 +03:00
$$PWD/net/portforwarder.cpp \
2015-04-13 19:02:48 +03:00
$$PWD/net/reverseresolution.cpp \
2015-04-19 18:17:47 +03:00
$$PWD/net/smtp.cpp \
2015-05-18 17:02:48 +03:00
$$PWD/net/private/geoipdatabase.cpp \
2015-04-19 18:17:47 +03:00
$$PWD/bittorrent/infohash.cpp \
$$PWD/bittorrent/session.cpp \
$$PWD/bittorrent/sessionstatus.cpp \
$$PWD/bittorrent/cachestatus.cpp \
$$PWD/bittorrent/magneturi.cpp \
$$PWD/bittorrent/torrentinfo.cpp \
$$PWD/bittorrent/torrenthandle.cpp \
$$PWD/bittorrent/peerinfo.cpp \
$$PWD/bittorrent/trackerentry.cpp \
$$PWD/bittorrent/tracker.cpp \
$$PWD/bittorrent/torrentcreatorthread.cpp \
$$PWD/bittorrent/private/speedmonitor.cpp \
$$PWD/bittorrent/private/bandwidthscheduler.cpp \
$$PWD/bittorrent/private/filterparserthread.cpp \
$$PWD/bittorrent/private/statistics.cpp \
$$PWD/bittorrent/private/resumedatasavingmanager.cpp \
2015-10-14 12:31:44 +03:00
$$PWD/rss/rssmanager.cpp \
$$PWD/rss/rssfeed.cpp \
$$PWD/rss/rssfolder.cpp \
$$PWD/rss/rssarticle.cpp \
$$PWD/rss/rssdownloadrule.cpp \
$$PWD/rss/rssdownloadrulelist.cpp \
$$PWD/rss/rssfile.cpp \
2015-10-17 18:59:04 +03:00
$$PWD/rss/private/rssparser.cpp \
$$PWD/utils/fs.cpp \
$$PWD/utils/gzip.cpp \
$$PWD/utils/misc.cpp \
2015-04-19 18:17:47 +03:00
$$PWD/utils/string.cpp \
$$PWD/torrentfileguard.cpp \
2015-04-19 18:17:47 +03:00
$$PWD/torrentfilter.cpp \
$$PWD/scanfoldersmodel.cpp \
$$PWD/searchengine.cpp