vym.pro
author insilmaril
Thu, 06 Jul 2006 14:47:01 +0000
branchqt4-port
changeset 9 f94317a94db1
parent 2 608f976aa7bb
child 11 b8c547f0fc58
permissions -rw-r--r--
Text Editor now shows states again
     1 TEMPLATE	= app
     2 LANGUAGE	= C++
     3 
     4 CONFIG	+= qt warn_on release
     5 QT += qt3support
     6 
     7 HEADERS	+= aboutdialog.h \
     8 	api.h \
     9 	branchobj.h \
    10 	exportoofiledialog.h \
    11 	exports.h \
    12 	file.h \
    13 	findwindow.h \
    14 	flagobj.h \
    15 	flagrowobj.h \
    16 	floatimageobj.h \
    17 	floatobj.h \
    18 	frameobj.h \
    19 	headingobj.h \
    20 	imageobj.h \
    21 	imports.h \
    22 	linkablemapobj.h \
    23 	xlinkobj.h \
    24 	mainwindow.h \
    25 	mapcenterobj.h \
    26 	mapeditor.h \
    27 	mapobj.h \
    28 	misc.h \
    29 	noteobj.h \
    30 	ornamentedobj.h \
    31 	process.h \
    32 	selection.h \
    33 	texteditor.h \
    34 	version.h \
    35 	xml.h \
    36 	xsltproc.h \
    37 	settings.h \
    38 	options.h
    39 
    40 SOURCES	+= aboutdialog.cpp \
    41 	api.cpp \
    42 	branchobj.cpp \
    43 	exportoofiledialog.cpp \
    44 	exports.cpp \
    45 	file.cpp \
    46 	findwindow.cpp \
    47 	flagobj.cpp \
    48 	flagrowobj.cpp \
    49 	floatimageobj.cpp \
    50 	floatobj.cpp \
    51 	frameobj.cpp \
    52 	headingobj.cpp \
    53 	imageobj.cpp \
    54 	imports.cpp \
    55 	linkablemapobj.cpp \
    56 	xlinkobj.cpp \
    57 	main.cpp \
    58 	mainwindow.cpp \
    59 	mapcenterobj.cpp \
    60 	mapeditor.cpp \
    61 	mapobj.cpp \
    62 	misc.cpp \
    63 	noteobj.cpp \
    64 	ornamentedobj.cpp \
    65 	process.cpp \
    66 	selection.cpp \
    67 	texteditor.cpp \
    68 	xml.cpp \
    69 	xsltproc.cpp \
    70 	settings.cpp \
    71 	options.cpp
    72 
    73 #The following line was changed from FORMS to FORMS3 by qt3to4
    74 FORMS3	= exportxhtmldialog.ui \
    75 	showtextdialog.ui \
    76 	extrainfodialog.ui \
    77 	editxlinkdialog.ui \
    78 	warningdialog.ui
    79 
    80 TARGET  = vym
    81 TRANSLATIONS += lang/vym_de.ts
    82 TRANSLATIONS += lang/vym_en.ts
    83 TRANSLATIONS += lang/vym_es.ts
    84 TRANSLATIONS += lang/vym_it.ts
    85 
    86 
    87 
    88 DESTROOT = /usr
    89 
    90 target.path = $${DESTROOT}/bin
    91 INSTALLS += target
    92 
    93 support.files = styles/ scripts/ icons/ flags/ lang/
    94 support.path = $${DESTROOT}/share/vym
    95 INSTALLS += support 
    96 
    97 doc.files = tex/vym.pdf 
    98 doc.path = $${DESTROOT}/share/doc/packages/vym
    99 INSTALLS += doc
   100 
   101 demo.files = demos/
   102 demo.path = $${DESTROOT}/share/doc/packages/vym
   103 INSTALLS += demo
   104 
   105 #The following line was inserted by qt3to4
   106 QT += xml  
   107 #The following line was inserted by qt3to4
   108 CONFIG += uic3
   109