-
Notifications
You must be signed in to change notification settings - Fork 0
/
Naoris.pro
55 lines (43 loc) · 998 Bytes
/
Naoris.pro
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#-------------------------------------------------
#
# Project created by QtCreator 2017-01-17T21:51:38
#
#-------------------------------------------------
QT += core gui
CONFIG += console
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = GenomeAntivirus
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
logoanimation.cpp \
aboutdialog.cpp \
thread.cpp \
gear.cpp \
statusone.cpp \
optionsdialog.cpp \
warningdialog.cpp \
abortwarningdialog.cpp \
singlescanthread.cpp
HEADERS += mainwindow.h \
logoanimation.h \
aboutdialog.h \
thread.h \
gear.h \
statusone.h \
optionsdialog.h \
warningdialog.h \
abortwarningdialog.h \
singlescanthread.h
FORMS += mainwindow.ui \
aboutdialog.ui \
optionsdialog.ui \
warningdialog.ui \
abortwarningdialog.ui
RESOURCES += \
genome.qrc
win32: RC_ICONS = genome.ico
#Windows icon and admin right
win32 {
RC_FILE = GenomeAntivirus.rc
}