vym.pro
author insilmaril
Mon, 30 Jul 2007 09:47:08 +0000
changeset 570 ab83f030285e
parent 566 ebebedffba50
child 574 56fa27b2be3e
permissions -rw-r--r--
1.9.4 New base class for XML based file parsing (vym & Freemind)
     1 TEMPLATE	= app
     2 LANGUAGE	= C++
     3 
     4 CONFIG	+= qt warn_on release debug
     5 CONFIG += x86 ppc
     6 ICON =icons/vym.icns
     7 
     8 QT += qt3support
     9 QT += network
    10 
    11 HEADERS	+= \	
    12 	aboutdialog.h \
    13 	animpoint.h \
    14 	branchobj.h \
    15 	branchpropwindow.h\
    16 	editxlinkdialog.h \
    17 	exportoofiledialog.h \
    18 	exportxhtmldialog.h\
    19 	exports.h \
    20 	extrainfodialog.h \
    21 	file.h \
    22 	findwindow.h \
    23 	flagobj.h \
    24 	flagrowobj.h \
    25 	floatimageobj.h \
    26 	floatobj.h \
    27 	frameobj.h \
    28 	headingobj.h \
    29 	highlighter.h \
    30 	historywindow.h \
    31 	imageobj.h \
    32 	imports.h \
    33 	linkablemapobj.h \
    34 	xlinkobj.h \
    35 	mainwindow.h \
    36 	mapcenterobj.h \
    37 	mapeditor.h \
    38 	mapobj.h \
    39 	misc.h \
    40 	noteobj.h \
    41 	options.h \
    42 	ornamentedobj.h \
    43 	parser.h \
    44 	process.h \
    45 	selection.h \
    46 	showtextdialog.h\
    47 	simplescripteditor.h\
    48 	texteditor.h \
    49 	version.h \
    50 	xml.h \
    51 	xml-freemind.h \
    52 	xsltproc.h \
    53 	settings.h \
    54 	warningdialog.h
    55 
    56 SOURCES	+= \
    57 	aboutdialog.cpp \
    58 	animpoint.cpp \
    59 	branchobj.cpp \
    60 	branchpropwindow.cpp \
    61 	editxlinkdialog.cpp \
    62 	exportoofiledialog.cpp \
    63 	exports.cpp \
    64 	exportxhtmldialog.cpp \
    65 	extrainfodialog.cpp \
    66 	file.cpp \
    67 	findwindow.cpp \
    68 	flagobj.cpp \
    69 	flagrowobj.cpp \
    70 	floatimageobj.cpp \
    71 	floatobj.cpp \
    72 	frameobj.cpp \
    73 	headingobj.cpp \
    74 	highlighter.cpp \
    75 	historywindow.cpp \
    76 	imageobj.cpp \
    77 	imports.cpp \
    78 	linkablemapobj.cpp \
    79 	xlinkobj.cpp \
    80 	main.cpp \
    81 	mainwindow.cpp \
    82 	mapcenterobj.cpp \
    83 	mapeditor.cpp \
    84 	mapobj.cpp \
    85 	misc.cpp \
    86 	noteobj.cpp \
    87 	options.cpp \
    88 	ornamentedobj.cpp \
    89 	parser.cpp \
    90 	process.cpp \
    91 	selection.cpp \
    92 	showtextdialog.cpp \
    93 	simplescripteditor.cpp \
    94 	texteditor.cpp \
    95 	version.cpp \
    96 	xml.cpp \
    97 	xml-freemind.cpp \
    98 	xsltproc.cpp \
    99 	settings.cpp \
   100 	warningdialog.cpp 
   101 
   102 FORMS = \
   103 	branchpropwindow.ui \
   104 	exportxhtmldialog.ui \
   105 	extrainfodialog.ui \
   106 	editxlinkdialog.ui \
   107 	historywindow.ui \
   108 	simplescripteditor.ui \
   109 	showtextdialog.ui \
   110 	warningdialog.ui
   111 
   112 #The following lines were inserted by qt3to4
   113 QT += xml  
   114 
   115 TARGET  = vym
   116 
   117 TRANSLATIONS += lang/vym_de.ts
   118 TRANSLATIONS += lang/vym_en.ts
   119 TRANSLATIONS += lang/vym_es.ts
   120 TRANSLATIONS += lang/vym_it.ts
   121 
   122 count( INSTALLDIR, 0 ) {
   123 	INSTALLDIR = /usr/local
   124 }
   125 
   126 message( "Installation directory" )
   127 message( $$INSTALLDIR )
   128 
   129 
   130 target.path = $${INSTALLDIR}/bin
   131 INSTALLS += target
   132 
   133 support.files = styles/ scripts/ icons/ flags/ lang/ macros/ exports/
   134 support.path = $${INSTALLDIR}/share/vym
   135 INSTALLS += support 
   136 
   137 doc.files = tex/vym.pdf 
   138 doc.path = $${INSTALLDIR}/share/doc/packages/vym
   139 INSTALLS += doc
   140 
   141 demo.files = demos/
   142 demo.path = $${INSTALLDIR}/share/doc/packages/vym
   143 INSTALLS += demo
   144