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