-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcorepad.pro
More file actions
70 lines (50 loc) · 1.32 KB
/
corepad.pro
File metadata and controls
70 lines (50 loc) · 1.32 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
#-------------------------------------------------
#
# Project created by QtCreator 2018-08-20T09:12:54
#
#-------------------------------------------------
QT += core gui widgets
TARGET = corepad
TEMPLATE = app
# library for theme
unix:!macx: LIBS += -lcprime
FORMS += \
corepad.ui
HEADERS += \
chighlighter.h \
coreedit.h \
corepad.h
SOURCES += \
chighlighter.cpp \
coreedit.cpp \
corepad.cpp \
main.cpp
RESOURCES += \
icons.qrc
# Disable warnings, enable threading support and c++11
CONFIG += thread silent build_all c++11
# Disable Debug on Release
# CONFIG(release):DEFINES += QT_NO_DEBUG_OUTPUT
# Build location
BUILD_PREFIX = $$(CA_BUILD_DIR)
isEmpty( BUILD_PREFIX ) {
BUILD_PREFIX = ./build
}
MOC_DIR = $$BUILD_PREFIX/moc-qt5
OBJECTS_DIR = $$BUILD_PREFIX/obj-qt5
RCC_DIR = $$BUILD_PREFIX/qrc-qt5
UI_DIR = $$BUILD_PREFIX/uic-qt5
unix {
isEmpty(PREFIX) {
PREFIX = /usr
}
BINDIR = $$PREFIX/bin
target.path = $$BINDIR
desktop.path = $$PREFIX/share/applications/
desktop.files = "corepad.desktop"
icons.path = $$PREFIX/share/coreapps/icons/
icons.files = icons/corepad.svg
INSTALLS += target icons desktop
}
DEFINES += QT_DEPRECATED_WARNINGS
DEFINES += "HAVE_POSIX_OPENPT"