vym.pro
author insilmaril
Mon, 20 Nov 2006 12:12:02 +0000
changeset 404 53efc2562a7d
parent 398 d42881c25fb6
child 406 1c8ff1928b97
permissions -rw-r--r--
historywindow moved to mainwindow. Started to get rid of Q3PtrList finally
     1 TEMPLATE	= app
     2 LANGUAGE	= C++
     3 
     4 CONFIG	+= qt warn_on release
     5 CONFIG += x86 ppc
     6 ICON =vym.icns
     7 
     8 QT += qt3support
     9 
    10 HEADERS	+= \	
    11 	aboutdialog.h \
    12 	api.h \
    13 	branchobj.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 	process.h \
    41 	showtextdialog.h\
    42 	selection.h \
    43 	texteditor.h \
    44 	version.h \
    45 	xml.h \
    46 	xsltproc.h \
    47 	settings.h \
    48 	warningdialog.h
    49 
    50 SOURCES	+= \
    51 	aboutdialog.cpp \
    52 	api.cpp \
    53 	branchobj.cpp \
    54 	editxlinkdialog.cpp \
    55 	exportoofiledialog.cpp \
    56 	exports.cpp \
    57 	exportxhtmldialog.cpp \
    58 	extrainfodialog.cpp \
    59 	file.cpp \
    60 	findwindow.cpp \
    61 	flagobj.cpp \
    62 	flagrowobj.cpp \
    63 	floatimageobj.cpp \
    64 	floatobj.cpp \
    65 	frameobj.cpp \
    66 	headingobj.cpp \
    67 	historywindow.cpp \
    68 	imageobj.cpp \
    69 	imports.cpp \
    70 	linkablemapobj.cpp \
    71 	xlinkobj.cpp \
    72 	main.cpp \
    73 	mainwindow.cpp \
    74 	mapcenterobj.cpp \
    75 	mapeditor.cpp \
    76 	mapobj.cpp \
    77 	misc.cpp \
    78 	noteobj.cpp \
    79 	options.cpp \
    80 	ornamentedobj.cpp \
    81 	process.cpp \
    82 	showtextdialog.cpp \
    83 	selection.cpp \
    84 	texteditor.cpp \
    85 	version.cpp \
    86 	xml.cpp \
    87 	xsltproc.cpp \
    88 	settings.cpp \
    89 	warningdialog.cpp 
    90 
    91 FORMS = \
    92 	exportxhtmldialog.ui \
    93 	extrainfodialog.ui \
    94 	editxlinkdialog.ui \
    95 	historywindow.ui \
    96 	showtextdialog.ui \
    97 	warningdialog.ui
    98 
    99 #The following lines were inserted by qt3to4
   100 QT += xml  
   101 
   102 TARGET  = vym
   103 
   104 TRANSLATIONS += lang/vym_de.ts
   105 TRANSLATIONS += lang/vym_en.ts
   106 TRANSLATIONS += lang/vym_es.ts
   107 TRANSLATIONS += lang/vym_it.ts
   108 
   109 count( INSTALLDIR, 0 ) {
   110 	INSTALLDIR = /usr/local
   111 }
   112 
   113 message( "Installation directory" )
   114 message( $$INSTALLDIR )
   115 
   116 
   117 target.path = $${INSTALLDIR}/bin
   118 INSTALLS += target
   119 
   120 support.files = styles/ scripts/ icons/ flags/ lang/
   121 support.path = $${INSTALLDIR}/share/vym
   122 INSTALLS += support 
   123 
   124 doc.files = tex/vym.pdf 
   125 doc.path = $${INSTALLDIR}/share/doc/packages/vym
   126 INSTALLS += doc
   127 
   128 demo.files = demos/
   129 demo.path = $${INSTALLDIR}/share/doc/packages/vym
   130 INSTALLS += demo
   131 
   132 exports.files = exports/
   133 exports.path =$${INSTALLDIR}/share/vym
   134 INSTALLS += exports
   135 
   136