vym.pro
author insilmaril
Tue, 17 Jul 2007 11:19:50 +0000
changeset 550 55236fe5a630
parent 527 f19bbd639726
child 566 ebebedffba50
permissions -rw-r--r--
1.9.2 Bugfixes for exports
     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 	xsltproc.h \
    52 	settings.h \
    53 	warningdialog.h
    54 
    55 SOURCES	+= \
    56 	aboutdialog.cpp \
    57 	animpoint.cpp \
    58 	branchobj.cpp \
    59 	branchpropwindow.cpp \
    60 	editxlinkdialog.cpp \
    61 	exportoofiledialog.cpp \
    62 	exports.cpp \
    63 	exportxhtmldialog.cpp \
    64 	extrainfodialog.cpp \
    65 	file.cpp \
    66 	findwindow.cpp \
    67 	flagobj.cpp \
    68 	flagrowobj.cpp \
    69 	floatimageobj.cpp \
    70 	floatobj.cpp \
    71 	frameobj.cpp \
    72 	headingobj.cpp \
    73 	highlighter.cpp \
    74 	historywindow.cpp \
    75 	imageobj.cpp \
    76 	imports.cpp \
    77 	linkablemapobj.cpp \
    78 	xlinkobj.cpp \
    79 	main.cpp \
    80 	mainwindow.cpp \
    81 	mapcenterobj.cpp \
    82 	mapeditor.cpp \
    83 	mapobj.cpp \
    84 	misc.cpp \
    85 	noteobj.cpp \
    86 	options.cpp \
    87 	ornamentedobj.cpp \
    88 	parser.cpp \
    89 	process.cpp \
    90 	selection.cpp \
    91 	showtextdialog.cpp \
    92 	simplescripteditor.cpp \
    93 	texteditor.cpp \
    94 	version.cpp \
    95 	xml.cpp \
    96 	xsltproc.cpp \
    97 	settings.cpp \
    98 	warningdialog.cpp 
    99 
   100 FORMS = \
   101 	branchpropwindow.ui \
   102 	exportxhtmldialog.ui \
   103 	extrainfodialog.ui \
   104 	editxlinkdialog.ui \
   105 	historywindow.ui \
   106 	simplescripteditor.ui \
   107 	showtextdialog.ui \
   108 	warningdialog.ui
   109 
   110 #The following lines were inserted by qt3to4
   111 QT += xml  
   112 
   113 TARGET  = vym
   114 
   115 TRANSLATIONS += lang/vym_de.ts
   116 TRANSLATIONS += lang/vym_en.ts
   117 TRANSLATIONS += lang/vym_es.ts
   118 TRANSLATIONS += lang/vym_it.ts
   119 
   120 count( INSTALLDIR, 0 ) {
   121 	INSTALLDIR = /usr/local
   122 }
   123 
   124 message( "Installation directory" )
   125 message( $$INSTALLDIR )
   126 
   127 
   128 target.path = $${INSTALLDIR}/bin
   129 INSTALLS += target
   130 
   131 support.files = styles/ scripts/ icons/ flags/ lang/ macros/ exports/
   132 support.path = $${INSTALLDIR}/share/vym
   133 INSTALLS += support 
   134 
   135 doc.files = tex/vym.pdf 
   136 doc.path = $${INSTALLDIR}/share/doc/packages/vym
   137 INSTALLS += doc
   138 
   139 demo.files = demos/
   140 demo.path = $${INSTALLDIR}/share/doc/packages/vym
   141 INSTALLS += demo
   142