blob: 31d05ea3701c257ef25d1d807bd7cb6e859b5d1e (
plain)
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
|
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = scribiu
TEMPLATE = app
CONFIG += link_pkgconfig
PKGCONFIG += libudev libusb openobex
LIBS += -lquazip
SOURCES += main.cc\
mainwindow.cc \
smartpenmanager.cc \
notebookmodel.cc \
smartpensyncer.cc \
smartpen.cc bitreader.cc stfreader.cc \
xmlutils.cc \
notebookview.cc \
afdnotebook.cc \
pageitem.cc \
stfgraphicsitem.cc \
replaydata.cc
HEADERS += mainwindow.h \
smartpenmanager.h \
notebookmodel.h \
smartpensyncer.h \
smartpen.h bitreader.h stfreader.h \
xmlutils.h \
notebookview.h \
afdnotebook.h \
pageitem.h \
stfgraphicsitem.h \
replaydata.h
FORMS += mainwindow.ui
|