Changeset 07ae23a for src/gui/gui.pro
- Timestamp:
- 01/27/10 16:06:21 (13 years ago)
- Branches:
- master, qt5
- Children:
- 0bb39f5
- Parents:
- 33b5c34
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gui/gui.pro
r33b5c34 r07ae23a 4 4 DESTDIR = ../bin 5 5 CONFIG += static 6 QT += sql xml 6 QT += sql \ 7 xml 7 8 8 9 # module dependencies 9 LIBS += -L$$DESTDIR -lmvc -lorm -lsql 10 INCLUDEPATH += ../orm ../mvc ../sql ../app 11 DEPENDPATH += . ../orm ../mvc ../sql 12 TARGETDEPS += $$DESTDIR/liborm.a $$DESTDIR/libmvc.a $$DESTDIR/libsql.a 13 maemo { 14 LIBS += -L$$DESTDIR -lqalarm 10 LIBS += -L$$DESTDIR \ 11 -lmvc \ 12 -lorm \ 13 -lsql 14 INCLUDEPATH += ../orm \ 15 ../mvc \ 16 ../sql \ 17 ../app 18 DEPENDPATH += . \ 19 ../orm \ 20 ../mvc \ 21 ../sql 22 TARGETDEPS += $$DESTDIR/liborm.a \ 23 $$DESTDIR/libmvc.a \ 24 $$DESTDIR/libsql.a 25 maemo { 26 LIBS += -L$$DESTDIR \ 27 -lqalarm 15 28 INCLUDEPATH += ../alarm 16 DEPENDPATH += 17 TARGETDEPS += 29 DEPENDPATH += ../alarm 30 TARGETDEPS += $$DESTDIR/libqalarm.a 18 31 } 19 20 32 21 33 # A shamelessly long list of sources, headers and forms. … … 23 35 # (which means they need to be added to the test module as well, 24 36 # but I am sure you can live with that for the time being). 25 26 FORMS += mainwindow.ui \ 27 daynavigatorwidget.ui \ 28 importschedulewidget.ui \ 29 about.ui \ 30 eventdialog.ui \ 31 tabcontainer.ui \ 32 mapwindow.ui 33 34 HEADERS += mainwindow.h \ 35 daynavigatorwidget.h \ 36 importschedulewidget.h \ 37 eventdialog.h \ 38 tabwidget.h \ 39 tabcontainer.h \ 40 mapwindow.h 41 42 SOURCES += mainwindow.cpp \ 43 daynavigatorwidget.cpp \ 44 importschedulewidget.cpp \ 45 eventdialog.cpp \ 46 tabwidget.cpp \ 47 tabcontainer.cpp \ 48 mapwindow.cpp 49 50 maemo { 51 FORMS += alarmdialog.ui 52 HEADERS += alarmdialog.h 53 SOURCES += alarmdialog.cpp 37 FORMS += searchhead.ui \ 38 mainwindow.ui \ 39 daynavigatorwidget.ui \ 40 importschedulewidget.ui \ 41 about.ui \ 42 eventdialog.ui \ 43 tabcontainer.ui \ 44 mapwindow.ui 45 HEADERS += roomstabcontainer.h \ 46 nowtabcontainer.h \ 47 trackstabcontainer.h \ 48 favtabcontainer.h \ 49 searchtabcontainer.h \ 50 searchhead.h \ 51 dayviewtabcontainer.h \ 52 mainwindow.h \ 53 daynavigatorwidget.h \ 54 importschedulewidget.h \ 55 eventdialog.h \ 56 tabwidget.h \ 57 tabcontainer.h \ 58 mapwindow.h 59 SOURCES += roomstabcontainer.cpp \ 60 nowtabcontainer.cpp \ 61 trackstabcontainer.cpp \ 62 favtabcontainer.cpp \ 63 searchtabcontainer.cpp \ 64 searchhead.cpp \ 65 dayviewtabcontainer.cpp \ 66 mainwindow.cpp \ 67 daynavigatorwidget.cpp \ 68 importschedulewidget.cpp \ 69 eventdialog.cpp \ 70 tabwidget.cpp \ 71 tabcontainer.cpp \ 72 mapwindow.cpp 73 maemo { 74 FORMS += searchhead.ui \ 75 alarmdialog.ui 76 HEADERS += roomstabcontainer.h \ 77 nowtabcontainer.h \ 78 trackstabcontainer.h \ 79 favtabcontainer.h \ 80 searchtabcontainer.h \ 81 searchhead.h \ 82 dayviewtabcontainer.h \ 83 alarmdialog.h 84 SOURCES += roomstabcontainer.cpp \ 85 nowtabcontainer.cpp \ 86 trackstabcontainer.cpp \ 87 favtabcontainer.cpp \ 88 searchtabcontainer.cpp \ 89 searchhead.cpp \ 90 dayviewtabcontainer.cpp \ 91 alarmdialog.cpp 54 92 } 55
Note: See TracChangeset
for help on using the changeset viewer.