summaryrefslogtreecommitdiff
path: root/noncore/unsupported/qashmoney/qashmoney.pro
Unidiff
Diffstat (limited to 'noncore/unsupported/qashmoney/qashmoney.pro') (more/less context) (ignore whitespace changes)
-rwxr-xr-xnoncore/unsupported/qashmoney/qashmoney.pro55
1 files changed, 55 insertions, 0 deletions
diff --git a/noncore/unsupported/qashmoney/qashmoney.pro b/noncore/unsupported/qashmoney/qashmoney.pro
new file mode 100755
index 0000000..faa898b
--- a/dev/null
+++ b/noncore/unsupported/qashmoney/qashmoney.pro
@@ -0,0 +1,55 @@
1TEMPLATE = app
2CONFIG = qt warn_on
3HEADERS = qashmoney.h \
4 accountdisplay.h \
5 account.h \
6 transaction.h \
7 transactiondisplay.h \
8 newtransaction.h \
9 transfer.h \
10 transferdialog.h \
11 preferences.h \
12 preferencedialogs.h \
13 memory.h \
14 memorydialog.h \
15 newaccount.h \
16 calculator.h \
17 datepicker.h \
18 budget.h \
19 budgetdisplay.h \
20 currency.h
21SOURCES = qashmoney.cpp \
22 accountdisplay.cpp \
23 account.cpp \
24 transaction.cpp \
25 transactiondisplay.cpp \
26 newtransaction.cpp \
27 transfer.cpp \
28 transferdialog.cpp \
29 preferences.cpp \
30 preferencedialogs.cpp \
31 memory.cpp \
32 memorydialog.cpp \
33 newaccount.cpp \
34 calculator.cpp \
35 datepicker.cpp \
36 main.cpp \
37 budget.cpp \
38 budgetdisplay.cpp \
39 currency.cpp
40INCLUDEPATH = $(OPIEDIR)/include
41DEPENDPATH = $(OPIEDIR)/include
42TARGET = qashmoney
43DESTDIR = $(OPIEDIR)/bin
44
45unix:LIBS += -lm
46LIBS += -lqpe -lopiecore2 -lsqlite3
47
48include ( $(OPIEDIR)/include.pro )
49
50!isEmpty( LIBSQLITE_INC_DIR ) {
51 INCLUDEPATH = $$LIBSQLITE_INC_DIR $$INCLUDEPATH
52}
53!isEmpty( LIBSQLITE_LIB_DIR ) {
54 LIBS = -L$$LIBSQLITE_LIB_DIR $$LIBS
55}