diff -r 9eb7767c2dfa -r 608f976aa7bb vym.pro --- a/vym.pro Sun Jan 30 12:58:47 2005 +0000 +++ b/vym.pro Tue Jun 06 14:58:11 2006 +0000 @@ -1,31 +1,15 @@ -TARGET = vym -TRANSLATIONS += vym_de.ts - TEMPLATE = app LANGUAGE = C++ CONFIG += qt warn_on release +QT += qt3support -DESTROOT = /usr - -target.path = $${DESTROOT}/bin -INSTALLS += target - -support.files = styles/ scripts/ icons/ -support.path = $${DESTROOT}/share/vym -INSTALLS += support - -doc.files = doc/* -doc.path = $${DESTROOT}/share/doc/packages/vym -INSTALLS += doc - -demo.files = demos/ -demo.path = $${DESTROOT}/share/vym -INSTALLS += demo - - -HEADERS += branchobj.h \ +HEADERS += aboutdialog.h \ + api.h \ + branchobj.h \ + exportoofiledialog.h \ exports.h \ + file.h \ findwindow.h \ flagobj.h \ flagrowobj.h \ @@ -34,7 +18,9 @@ frameobj.h \ headingobj.h \ imageobj.h \ + imports.h \ linkablemapobj.h \ + xlinkobj.h \ mainwindow.h \ mapcenterobj.h \ mapeditor.h \ @@ -47,10 +33,16 @@ texteditor.h \ version.h \ xml.h \ + xsltproc.h \ settings.h \ options.h -SOURCES += branchobj.cpp \ + +SOURCES += aboutdialog.cpp \ + api.cpp \ + branchobj.cpp \ + exportoofiledialog.cpp \ exports.cpp \ + file.cpp \ findwindow.cpp \ flagobj.cpp \ flagrowobj.cpp \ @@ -59,7 +51,9 @@ frameobj.cpp \ headingobj.cpp \ imageobj.cpp \ + imports.cpp \ linkablemapobj.cpp \ + xlinkobj.cpp \ main.cpp \ mainwindow.cpp \ mapcenterobj.cpp \ @@ -72,10 +66,44 @@ selection.cpp \ texteditor.cpp \ xml.cpp \ + xsltproc.cpp \ settings.cpp \ options.cpp -FORMS = exporthtmldialog.ui \ - exportxhtmldialog.ui \ + +#The following line was changed from FORMS to FORMS3 by qt3to4 +FORMS3 = exportxhtmldialog.ui \ showtextdialog.ui \ - extrainfodialog.ui + extrainfodialog.ui \ + editxlinkdialog.ui \ + warningdialog.ui +TARGET = vym +TRANSLATIONS += lang/vym_de.ts +TRANSLATIONS += lang/vym_en.ts +TRANSLATIONS += lang/vym_es.ts +TRANSLATIONS += lang/vym_it.ts + + + +DESTROOT = /usr + +target.path = $${DESTROOT}/bin +INSTALLS += target + +support.files = styles/ scripts/ icons/ flags/ lang/ +support.path = $${DESTROOT}/share/vym +INSTALLS += support + +doc.files = tex/vym.pdf +doc.path = $${DESTROOT}/share/doc/packages/vym +INSTALLS += doc + +demo.files = demos/ +demo.path = $${DESTROOT}/share/doc/packages/vym +INSTALLS += demo + +#The following line was inserted by qt3to4 +QT += xml +#The following line was inserted by qt3to4 +CONFIG += uic3 +