vym.pro
author insilmaril
Mon, 05 Mar 2007 23:22:51 +0000
changeset 432 f867269ab8a1
parent 423 7019762f8701
child 434 c585be63ec69
permissions -rw-r--r--
1.8.69 Some more scripting functionality (for testing)
     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 
    10 HEADERS	+= \	
    11 	aboutdialog.h \
    12 	branchobj.h \
    13 	branchpropwindow.h\
    14 	editxlinkdialog.h \
    15 	exportoofiledialog.h \
    16 	exportxhtmldialog.h\
    17 	exports.h \
    18 	extrainfodialog.h \
    19 	file.h \
    20 	findwindow.h \
    21 	flagobj.h \
    22 	flagrowobj.h \
    23 	floatimageobj.h \
    24 	floatobj.h \
    25 	frameobj.h \
    26 	headingobj.h \
    27 	historywindow.h \
    28 	imageobj.h \
    29 	imports.h \
    30 	linkablemapobj.h \
    31 	xlinkobj.h \
    32 	mainwindow.h \
    33 	mapcenterobj.h \
    34 	mapeditor.h \
    35 	mapobj.h \
    36 	misc.h \
    37 	noteobj.h \
    38 	options.h \
    39 	ornamentedobj.h \
    40 	parser.h \
    41 	process.h \
    42 	showtextdialog.h\
    43 	selection.h \
    44 	simplescripteditor.h\
    45 	texteditor.h \
    46 	version.h \
    47 	xml.h \
    48 	xsltproc.h \
    49 	settings.h \
    50 	warningdialog.h
    51 
    52 SOURCES	+= \
    53 	aboutdialog.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 	parser.cpp \
    84 	process.cpp \
    85 	showtextdialog.cpp \
    86 	simplescripteditor.cpp \
    87 	selection.cpp \
    88 	texteditor.cpp \
    89 	version.cpp \
    90 	xml.cpp \
    91 	xsltproc.cpp \
    92 	settings.cpp \
    93 	warningdialog.cpp 
    94 
    95 FORMS = \
    96 	branchpropwindow.ui \
    97 	exportxhtmldialog.ui \
    98 	extrainfodialog.ui \
    99 	editxlinkdialog.ui \
   100 	historywindow.ui \
   101 	simplescripteditor.ui \
   102 	showtextdialog.ui \
   103 	warningdialog.ui
   104 
   105 #The following lines were inserted by qt3to4
   106 QT += xml  
   107 
   108 TARGET  = vym
   109 
   110 TRANSLATIONS += lang/vym_de.ts
   111 TRANSLATIONS += lang/vym_en.ts
   112 TRANSLATIONS += lang/vym_es.ts
   113 TRANSLATIONS += lang/vym_it.ts
   114 
   115 count( INSTALLDIR, 0 ) {
   116 	INSTALLDIR = /usr/local
   117 }
   118 
   119 message( "Installation directory" )
   120 message( $$INSTALLDIR )
   121 
   122 
   123 target.path = $${INSTALLDIR}/bin
   124 INSTALLS += target
   125 
   126 support.files = styles/ scripts/ icons/ flags/ lang/
   127 support.path = $${INSTALLDIR}/share/vym
   128 INSTALLS += support 
   129 
   130 doc.files = tex/vym.pdf 
   131 doc.path = $${INSTALLDIR}/share/doc/packages/vym
   132 INSTALLS += doc
   133 
   134 demo.files = demos/
   135 demo.path = $${INSTALLDIR}/share/doc/packages/vym
   136 INSTALLS += demo
   137 
   138 exports.files = exports/
   139 exports.path =$${INSTALLDIR}/share/vym
   140 INSTALLS += exports
   141 
   142