Fixed issue where the LRC of a card was the reverse of the start
[magread] / MagRead.pro
1 #-------------------------------------------------
2 #
3 # Project created by QtCreator 2010-07-21T09:30:18
4 #
5 #-------------------------------------------------
6
7 QT       += core gui
8
9 TARGET = MagRead
10 TEMPLATE = app
11
12 maemo5 {
13         QT+= maemo5
14 }
15
16
17 SOURCES += main.cpp\
18         magread.cpp \
19     carddetect.cpp \
20     audioinput.cpp \
21     mslib.c \
22     llist.c
23
24 HEADERS  += magread.h \
25     carddetect.h \
26     audioinput.h \
27     mslib.h \
28     llist.h \
29     magcard.h
30
31 LIBS += -lpulse-simple -lpulse
32
33 CONFIG += link_pkconfig
34
35 symbian {
36     TARGET.UID3 = 0xe2c961e1
37     # TARGET.CAPABILITY += 
38     TARGET.EPOCSTACKSIZE = 0x14000
39     TARGET.EPOCHEAPSIZE = 0x020000 0x800000
40 }
41
42 unix {
43         INSTALLS += target desktop icon48
44         target.path = /usr/bin/magread
45         desktop.path = /usr/share/applications/hildon
46         desktop.files += maemofiles/magread.desktop
47         icon48.path = /usr/share/icons/hicolor/48x48/hildon
48         icon48.files += maemofiles/magread.png
49 }
50