1.1 --- a/vym.pro Sun Jan 30 12:58:47 2005 +0000
1.2 +++ b/vym.pro Tue Jun 13 13:54:53 2006 +0000
1.3 @@ -1,31 +1,15 @@
1.4 -TARGET = vym
1.5 -TRANSLATIONS += vym_de.ts
1.6 -
1.7 TEMPLATE = app
1.8 LANGUAGE = C++
1.9
1.10 CONFIG += qt warn_on release
1.11 +QT += qt3support
1.12
1.13 -DESTROOT = /usr
1.14 -
1.15 -target.path = $${DESTROOT}/bin
1.16 -INSTALLS += target
1.17 -
1.18 -support.files = styles/ scripts/ icons/
1.19 -support.path = $${DESTROOT}/share/vym
1.20 -INSTALLS += support
1.21 -
1.22 -doc.files = doc/*
1.23 -doc.path = $${DESTROOT}/share/doc/packages/vym
1.24 -INSTALLS += doc
1.25 -
1.26 -demo.files = demos/
1.27 -demo.path = $${DESTROOT}/share/vym
1.28 -INSTALLS += demo
1.29 -
1.30 -
1.31 -HEADERS += branchobj.h \
1.32 +HEADERS += aboutdialog.h \
1.33 + api.h \
1.34 + branchobj.h \
1.35 + exportoofiledialog.h \
1.36 exports.h \
1.37 + file.h \
1.38 findwindow.h \
1.39 flagobj.h \
1.40 flagrowobj.h \
1.41 @@ -34,7 +18,9 @@
1.42 frameobj.h \
1.43 headingobj.h \
1.44 imageobj.h \
1.45 + imports.h \
1.46 linkablemapobj.h \
1.47 + xlinkobj.h \
1.48 mainwindow.h \
1.49 mapcenterobj.h \
1.50 mapeditor.h \
1.51 @@ -47,10 +33,16 @@
1.52 texteditor.h \
1.53 version.h \
1.54 xml.h \
1.55 + xsltproc.h \
1.56 settings.h \
1.57 options.h
1.58 -SOURCES += branchobj.cpp \
1.59 +
1.60 +SOURCES += aboutdialog.cpp \
1.61 + api.cpp \
1.62 + branchobj.cpp \
1.63 + exportoofiledialog.cpp \
1.64 exports.cpp \
1.65 + file.cpp \
1.66 findwindow.cpp \
1.67 flagobj.cpp \
1.68 flagrowobj.cpp \
1.69 @@ -59,7 +51,9 @@
1.70 frameobj.cpp \
1.71 headingobj.cpp \
1.72 imageobj.cpp \
1.73 + imports.cpp \
1.74 linkablemapobj.cpp \
1.75 + xlinkobj.cpp \
1.76 main.cpp \
1.77 mainwindow.cpp \
1.78 mapcenterobj.cpp \
1.79 @@ -72,10 +66,44 @@
1.80 selection.cpp \
1.81 texteditor.cpp \
1.82 xml.cpp \
1.83 + xsltproc.cpp \
1.84 settings.cpp \
1.85 options.cpp
1.86 -FORMS = exporthtmldialog.ui \
1.87 - exportxhtmldialog.ui \
1.88 +
1.89 +#The following line was changed from FORMS to FORMS3 by qt3to4
1.90 +FORMS3 = exportxhtmldialog.ui \
1.91 showtextdialog.ui \
1.92 - extrainfodialog.ui
1.93 + extrainfodialog.ui \
1.94 + editxlinkdialog.ui \
1.95 + warningdialog.ui
1.96
1.97 +TARGET = vym
1.98 +TRANSLATIONS += lang/vym_de.ts
1.99 +TRANSLATIONS += lang/vym_en.ts
1.100 +TRANSLATIONS += lang/vym_es.ts
1.101 +TRANSLATIONS += lang/vym_it.ts
1.102 +
1.103 +
1.104 +
1.105 +DESTROOT = /usr
1.106 +
1.107 +target.path = $${DESTROOT}/bin
1.108 +INSTALLS += target
1.109 +
1.110 +support.files = styles/ scripts/ icons/ flags/ lang/
1.111 +support.path = $${DESTROOT}/share/vym
1.112 +INSTALLS += support
1.113 +
1.114 +doc.files = tex/vym.pdf
1.115 +doc.path = $${DESTROOT}/share/doc/packages/vym
1.116 +INSTALLS += doc
1.117 +
1.118 +demo.files = demos/
1.119 +demo.path = $${DESTROOT}/share/doc/packages/vym
1.120 +INSTALLS += demo
1.121 +
1.122 +#The following line was inserted by qt3to4
1.123 +QT += xml
1.124 +#The following line was inserted by qt3to4
1.125 +CONFIG += uic3
1.126 +