vym.pro
author insilmaril
Mon, 31 Jul 2006 12:13:54 +0000
changeset 362 496aafc50372
parent 360 b047741a460a
child 363 3dc98c8843bc
permissions -rw-r--r--
added vym2kdebookmarks.xsl
     1 TEMPLATE	= app
     2 LANGUAGE	= C++
     3 
     4 CONFIG	+= qt warn_on release
     5 
     6 HEADERS	+= aboutdialog.h \
     7 	api.h \
     8 	branchobj.h \
     9 	exportoofiledialog.h \
    10 	exports.h \
    11 	file.h \
    12 	findwindow.h \
    13 	flagobj.h \
    14 	flagrowobj.h \
    15 	floatimageobj.h \
    16 	floatobj.h \
    17 	frameobj.h \
    18 	headingobj.h \
    19 	imageobj.h \
    20 	imports.h \
    21 	linkablemapobj.h \
    22 	xlinkobj.h \
    23 	mainwindow.h \
    24 	mapcenterobj.h \
    25 	mapeditor.h \
    26 	mapobj.h \
    27 	misc.h \
    28 	noteobj.h \
    29 	ornamentedobj.h \
    30 	process.h \
    31 	selection.h \
    32 	texteditor.h \
    33 	version.h \
    34 	xml.h \
    35 	xsltproc.h \
    36 	settings.h \
    37 	options.h
    38 
    39 SOURCES	+= aboutdialog.cpp \
    40 	api.cpp \
    41 	branchobj.cpp \
    42 	exportoofiledialog.cpp \
    43 	exports.cpp \
    44 	file.cpp \
    45 	findwindow.cpp \
    46 	flagobj.cpp \
    47 	flagrowobj.cpp \
    48 	floatimageobj.cpp \
    49 	floatobj.cpp \
    50 	frameobj.cpp \
    51 	headingobj.cpp \
    52 	imageobj.cpp \
    53 	imports.cpp \
    54 	linkablemapobj.cpp \
    55 	xlinkobj.cpp \
    56 	main.cpp \
    57 	mainwindow.cpp \
    58 	mapcenterobj.cpp \
    59 	mapeditor.cpp \
    60 	mapobj.cpp \
    61 	misc.cpp \
    62 	noteobj.cpp \
    63 	ornamentedobj.cpp \
    64 	process.cpp \
    65 	selection.cpp \
    66 	texteditor.cpp \
    67 	xml.cpp \
    68 	xsltproc.cpp \
    69 	settings.cpp \
    70 	options.cpp
    71 
    72 FORMS	= exportxhtmldialog.ui \
    73 	showtextdialog.ui \
    74 	extrainfodialog.ui \
    75 	editxlinkdialog.ui \
    76 	warningdialog.ui
    77 
    78 TARGET  = vym
    79 TRANSLATIONS += lang/vym_de.ts
    80 TRANSLATIONS += lang/vym_en.ts
    81 TRANSLATIONS += lang/vym_es.ts
    82 TRANSLATIONS += lang/vym_it.ts
    83 
    84 count( INSTALLDIR, 0 ) {
    85 	INSTALLDIR = /usr/local/bin
    86 }
    87 
    88 message( "Installation directory" )
    89 message( $$INSTALLDIR )
    90 
    91 
    92 target.path = $$INSTALLDIR
    93 INSTALLS += target
    94 
    95 
    96 DESTROOT = /usr
    97 
    98 target.path = $${DESTROOT}/bin
    99 INSTALLS += target
   100 
   101 support.files = styles/ scripts/ icons/ flags/ lang/
   102 support.path = $${DESTROOT}/share/vym
   103 INSTALLS += support 
   104 
   105 doc.files = tex/vym.pdf 
   106 doc.path = $${DESTROOT}/share/doc/packages/vym
   107 INSTALLS += doc
   108 
   109 demo.files = demos/
   110 demo.path = $${DESTROOT}/share/doc/packages/vym
   111 INSTALLS += demo
   112 
   113 exports.files = exports/
   114 exports.path =$${DESTROOT}/share/vym
   115 INSTALLS += exports
   116 
   117