-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectoryViewer.pro
More file actions
55 lines (45 loc) · 1014 Bytes
/
DirectoryViewer.pro
File metadata and controls
55 lines (45 loc) · 1014 Bytes
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 2014-02-13T15:19:16
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = DirectoryViewer
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
mainhandler.cpp \
types.cpp \
osinterface.cpp \
myexceptions.cpp \
openedlisthandle.cpp \
functions.cpp \
mylineedit.cpp \
mytreeview.cpp \
myiconview.cpp \
mydialog.cpp \
myviewer.cpp \
archiveviewer.cpp \
optiondialog.cpp \
wroker.cpp \
worker.cpp
HEADERS += mainwindow.h \
mainhandler.h \
types.h \
osinterface.h \
myexceptions.h \
openedlisthandle.h \
functions.h \
mylineedit.h \
mytreeview.h \
stylesheets.h \
myiconview.h \
mydialog.h \
myviewer.h \
archiveviewer.h \
optiondialog.h \
wroker.h \
worker.h
FORMS += mainwindow.ui
QMAKE_CXXFLAGS += -std=c++11