-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathQStyleMaker.pro
60 lines (50 loc) · 1.45 KB
/
QStyleMaker.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
56
57
58
59
60
#-------------------------------------------------
#
# Project created by QtCreator 2013-07-08T11:03:40
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = QStyleMaker
TEMPLATE = app
DESTDIR = build/bin
OBJECTS_DIR = build/obj
MOC_DIR = build/moc
RCC_DIR = build/rc
UI_DIR = build/ui
DEPENDPATH += \
src/main \
src/defines \
src/debug \
src/dialogs/about \
src/common
INCLUDEPATH += \
src/main \
src/defines \
src/debug \
src/dialogs/about \
src/common
SOURCES += main.cpp\
maindialog.cpp \
src/debug/debughelper.cpp \
src/dialogs/about/about.cpp \
src/common/stringcommon.cpp \
src/main/maindialog_slots.cpp \
src/main/maindialog_init.cpp \
src/dialogs/test/testdialog.cpp \
src/dialogs/test/testmainwindow.cpp \
src/dialogs/qsseditor/highlighter.cpp
HEADERS += maindialog.h \
src/defines/defines.h \
src/debug/debughelper.h \
src/dialogs/about/about.h \
src/common/stringcommon.h \
src/dialogs/test/testdialog.h \
src/dialogs/test/testmainwindow.h \
src/dialogs/qsseditor/highlighter.h
FORMS += maindialog.ui \
src/dialogs/about/about.ui \
src/dialogs/test/testdialog.ui \
src/dialogs/test/testmainwindow.ui
RESOURCES += \
resources/resources.qrc