forked from Proj-Ascension/Client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjectAscension.pro
More file actions
90 lines (72 loc) · 1.51 KB
/
ProjectAscension.pro
File metadata and controls
90 lines (72 loc) · 1.51 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
TEMPLATE = app
RC_FILE = Resource/Launcher.rc
CONFIG += app_bundle
CONFIG += c++11
win32 {
RC_ICONS += Resource/Icons/Ascension_Icon.ico
LIBS += -lgdi32 -ldwmapi
}
QT += \
core \
gui \
widgets \
network \
webkit \
webkitwidgets \
sql
HEADERS += \
Source/TabLabel.h \
Source/Library.h \
Source/Browser.h \
Source/MainPanel.h \
Source/Database.h
SOURCES += \
Source/Main.cpp \
Source/TabLabel.cpp \
Source/Library.cpp \
Source/Browser.cpp \
Source/MainPanel.cpp \
Source/Database.cpp
win32 {
HEADERS += \
Source/BorderlessWindow.h \
Source/WinWindow.h \
Source/WinPanel.h
SOURCES += \
Source/BorderlessWindow.cpp \
Source/WinWindow.cpp \
Source/WinPanel.cpp
}
unix {
HEADERS += \
Source/UnixWindow.h \
Source/UnixPanel.h
SOURCES += \
Source/UnixWindow.cpp \
Source/UnixPanel.cpp
}
release: DESTDIR = build/release
debug: DESTDIR = build/debug
OBJECTS_DIR = $$DESTDIR/.obj
MOC_DIR = $$DESTDIR/.moc
RCC_DIR = $$DESTDIR/.qrc
UI_DIR = $$DESTDIR/.ui
INCLUDEPATH += \
Source/
VPATH += \
BorderlessWindow/
win32 {
include("BorderlessWindow/QtWinMigrate.pri")
include("BorderlessWindow/Common.pri")
}
RESOURCES += \
Resource/Icons.qrc \
Resource/Fonts.qrc \
Resource/Styles.qrc
OTHER_FILES +=
FORMS += \
Resource/UI/Library.ui \
Resource/UI/Browser.ui
DISTFILES += \
Resource/PAClient.css \
Resource/Content.css