]> ToastFreeware Gitweb - toast/confclerk.git/blobdiff - src/mvc/mvc.pro
Add .pro.user.* to svn:ignore and remove it in the release target.
[toast/confclerk.git] / src / mvc / mvc.pro
index 7ab7bb900cb5913e3ab4d328d04d82681aa6447f..f0d92d751ca7568e791569edede0ad7ecf2aee9b 100644 (file)
@@ -1,25 +1,39 @@
+include(../global.pri)
 TEMPLATE = lib
 TARGET = mvc
 DESTDIR = ../bin
 CONFIG += static
-QT += sql
+QT += sql 
+QMAKE_CLEAN += ../bin/libmvc.a
 
 # module dependencies
-LIBS += -L$$DESTDIR -lorm
-INCLUDEPATH += ../orm
-DEPENDPATH += . ../orm
-TARGETDEPS += $$DESTDIR/liborm.a
-
-HEADERS += \
-    event.h \
+LIBS += -L$$DESTDIR \
+    -lorm
+INCLUDEPATH += ../orm ../app
+DEPENDPATH += . \
+    ../orm
+POST_TARGETDEPS += $$DESTDIR/liborm.a
+maemo { 
+    LIBS += -L$$DESTDIR \
+        -lqalarm \
+        -lalarm
+    INCLUDEPATH += ../alarm
+    DEPENDPATH += ../alarm
+    POST_TARGETDEPS += $$DESTDIR/libqalarm.a
+}
+HEADERS += event.h \
     conference.h \
+    track.h \
     delegate.h \
     eventmodel.h \
-    treeview.h
-SOURCES += \
-    event.cpp \
+    treeview.h \
+    room.h \
+    conferencemodel.h
+SOURCES += event.cpp \
     conference.cpp \
+    track.cpp \
     delegate.cpp \
     eventmodel.cpp \
-    treeview.cpp
-
+    treeview.cpp \
+    room.cpp \
+    conferencemodel.cpp