TARGET = gui
DESTDIR = ../bin
CONFIG += static
-QT += sql xml
+QT += sql \
+ xml
# module dependencies
-LIBS += -L$$DESTDIR -lmvc -lorm -lsql
-INCLUDEPATH += ../orm ../mvc ../sql ../app
-DEPENDPATH += . ../orm ../mvc ../sql
-TARGETDEPS += $$DESTDIR/liborm.a $$DESTDIR/libmvc.a $$DESTDIR/libsql.a
-maemo {
- LIBS += -L$$DESTDIR -lqalarm
+LIBS += -L$$DESTDIR \
+ -lmvc \
+ -lorm \
+ -lsql
+INCLUDEPATH += ../orm \
+ ../mvc \
+ ../sql \
+ ../app
+DEPENDPATH += . \
+ ../orm \
+ ../mvc \
+ ../sql
+TARGETDEPS += $$DESTDIR/liborm.a \
+ $$DESTDIR/libmvc.a \
+ $$DESTDIR/libsql.a
+maemo {
+ LIBS += -L$$DESTDIR \
+ -lqalarm
INCLUDEPATH += ../alarm
- DEPENDPATH += ../alarm
- TARGETDEPS += $$DESTDIR/libqalarm.a
+ DEPENDPATH += ../alarm
+ TARGETDEPS += $$DESTDIR/libqalarm.a
}
-
# A shamelessly long list of sources, headers and forms.
# Please note that resources MUST be added to the app module
# (which means they need to be added to the test module as well,
# but I am sure you can live with that for the time being).
-
-FORMS += mainwindow.ui \
- daynavigatorwidget.ui \
- importschedulewidget.ui \
- about.ui \
- eventdialog.ui \
- tabcontainer.ui \
- mapwindow.ui
-
-HEADERS += mainwindow.h \
- daynavigatorwidget.h \
- importschedulewidget.h \
- eventdialog.h \
- tabwidget.h \
- tabcontainer.h \
- mapwindow.h
-
-SOURCES += mainwindow.cpp \
- daynavigatorwidget.cpp \
- importschedulewidget.cpp \
- eventdialog.cpp \
- tabwidget.cpp \
- tabcontainer.cpp \
- mapwindow.cpp
-
-maemo {
- FORMS += alarmdialog.ui
- HEADERS += alarmdialog.h
- SOURCES += alarmdialog.cpp
+FORMS += searchhead.ui \
+ mainwindow.ui \
+ daynavigatorwidget.ui \
+ importschedulewidget.ui \
+ about.ui \
+ eventdialog.ui \
+ tabcontainer.ui \
+ mapwindow.ui
+HEADERS += roomstabcontainer.h \
+ nowtabcontainer.h \
+ trackstabcontainer.h \
+ favtabcontainer.h \
+ searchtabcontainer.h \
+ searchhead.h \
+ dayviewtabcontainer.h \
+ mainwindow.h \
+ daynavigatorwidget.h \
+ importschedulewidget.h \
+ eventdialog.h \
+ tabwidget.h \
+ tabcontainer.h \
+ mapwindow.h
+SOURCES += roomstabcontainer.cpp \
+ nowtabcontainer.cpp \
+ trackstabcontainer.cpp \
+ favtabcontainer.cpp \
+ searchtabcontainer.cpp \
+ searchhead.cpp \
+ dayviewtabcontainer.cpp \
+ mainwindow.cpp \
+ daynavigatorwidget.cpp \
+ importschedulewidget.cpp \
+ eventdialog.cpp \
+ tabwidget.cpp \
+ tabcontainer.cpp \
+ mapwindow.cpp
+maemo {
+ FORMS += searchhead.ui \
+ alarmdialog.ui
+ HEADERS += roomstabcontainer.h \
+ nowtabcontainer.h \
+ trackstabcontainer.h \
+ favtabcontainer.h \
+ searchtabcontainer.h \
+ searchhead.h \
+ dayviewtabcontainer.h \
+ alarmdialog.h
+ SOURCES += roomstabcontainer.cpp \
+ nowtabcontainer.cpp \
+ trackstabcontainer.cpp \
+ favtabcontainer.cpp \
+ searchtabcontainer.cpp \
+ searchhead.cpp \
+ dayviewtabcontainer.cpp \
+ alarmdialog.cpp
}
-