-
Notifications
You must be signed in to change notification settings - Fork 3
/
labelbuddy.pro
117 lines (100 loc) · 2.24 KB
/
labelbuddy.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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
INCLUDEPATH += .
HEADERS += \
src/doc_list.h \
src/doc_list_model.h \
src/label_list.h \
src/label_list_model.h \
src/dataset_menu.h \
src/user_roles.h \
src/main_window.h \
src/annotator.h \
src/searchable_text.h \
src/annotations_model.h \
src/no_deselect_all_view.h \
src/database.h \
src/database_impl.h \
src/import_export_menu.h \
src/utils.h \
src/compat.h \
src/char_indices.h \
src/char_indices.tpp \
src/annotations_list_model.h \
src/annotations_list.h \
SOURCES += \
src/main.cpp \
src/doc_list.cpp \
src/doc_list_model.cpp \
src/label_list.cpp \
src/label_list_model.cpp \
src/dataset_menu.cpp \
src/main_window.cpp \
src/annotator.cpp \
src/searchable_text.cpp \
src/annotations_model.cpp \
src/no_deselect_all_view.cpp \
src/database.cpp \
src/import_export_menu.cpp \
src/utils.cpp \
src/compat.cpp \
src/char_indices.cpp \
src/annotations_list_model.cpp \
src/annotations_list.cpp \
QT += widgets sql
RESOURCES = resources.qrc
macx {
ICON = data/icons/labelbuddy.icns
}
win32 {
RC_ICONS = data/icons/labelbuddy.ico
}
test {
TEMPLATE = app
TARGET = labelbuddy_tests
CONFIG += debug
QMAKE_CXXFLAGS += --coverage
QMAKE_CFLAGS += --coverage
QMAKE_LFLAGS += --coverage
QT += testlib
INCLUDEPATH += ./src/
RESOURCES += test_resources.qrc
HEADERS += \
test/testing_utils.h \
test/test_searchable_text.h \
test/test_database.h \
test/test_doc_list_model.h \
test/test_label_list_model.h \
test/test_annotations_model.h \
test/test_annotator.h \
test/test_dataset_menu.h \
test/test_doc_list.h \
test/test_main_window.h \
test/test_utils.h \
test/test_label_list.h \
test/test_import_export_menu.h \
test/test_char_indices.h \
test/test_annotations_list_model.h \
test/test_annotations_list.h \
SOURCES += \
test/main.cpp \
test/testing_utils.cpp \
test/test_searchable_text.cpp \
test/test_database.cpp \
test/test_doc_list_model.cpp \
test/test_label_list_model.cpp \
test/test_annotations_model.cpp \
test/test_annotator.cpp \
test/test_dataset_menu.cpp \
test/test_doc_list.cpp \
test/test_main_window.cpp \
test/test_utils.cpp \
test/test_label_list.cpp \
test/test_import_export_menu.cpp \
test/test_char_indices.cpp \
test/test_annotations_list_model.cpp \
test/test_annotations_list.cpp \
SOURCES -= src/main.cpp
}
else {
TEMPLATE = app
TARGET = labelbuddy
}