blob: 57893bb511119982cd61e6c1762615ed15ba4953 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#-------------------------------------------------
#
# Project created by QtCreator 2016-08-16T06:39:30
#
#-------------------------------------------------
QT += core gui sql
LIBS += "C:\psql\9.5\lib\libpq.lib"
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = ShemovCleaner
TEMPLATE = app
SOURCES += main.cpp\
shemovcleaner.cpp \
filesorter.cpp \
torrentparser.cpp \
torrentdisplay.cpp
HEADERS += shemovcleaner.h \
filesorter.h \
torrentparser.h \
torrentdisplay.h
DISTFILES +=
RESOURCES += \
shemovcleaner.qrc
|