-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkronos.pro
More file actions
46 lines (35 loc) · 1.11 KB
/
kronos.pro
File metadata and controls
46 lines (35 loc) · 1.11 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
QT += core widgets svg
CONFIG += c++11
win32-g++ {
QMAKE_CXXFLAGS += -Werror
}
win32-msvc*{
QMAKE_CXXFLAGS += /WX
}
RC_ICONS = kronos.ico
SOURCES += $$PWD/main.cpp \
$$PWD/mainwindow.cpp \
$$PWD/worklogdialog.cpp \
$$PWD/deleteconfirmationdialog.cpp \
$$PWD/maincontroller.cpp \
$$PWD/worklogdialoglistvievitemdelegate.cpp \
$$PWD/widgets/dailyworklogs.cpp \
$$PWD/widgets/kronoscalendarwidget.cpp
HEADERS += $$PWD/mainwindow.h \
$$PWD/worklogdialog.h \
$$PWD/deleteconfirmationdialog.h \
$$PWD/maincontroller.h \
$$PWD/worklogdialoglistvievitemdelegate.h \
$$PWD/widgets/dailyworklogs.h \
$$PWD/widgets/kronoscalendarwidget.h
FORMS += \
$$PWD/mainwindow.ui \
$$PWD/worklogdialog.ui \
$$PWD/deleteconfirmationdialog.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
include(kronos.pri)
RESOURCES += \
resources.qrc