vym.pro
author insilmaril
Tue, 14 Mar 2006 14:27:04 +0000
changeset 239 bdeb503d2b7f
parent 205 30c4a6c7ff10
child 243 fad762341d2d
permissions -rw-r--r--
hideLinkInExport for Branches (Floats still missing). Floats are now OrnamentedObj.
     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	= exporthtmldialog.ui \
    73 	exportxhtmldialog.ui \
    74 	showtextdialog.ui \
    75 	extrainfodialog.ui \
    76 	editxlinkdialog.ui
    77 
    78 TARGET  = vym
    79 TRANSLATIONS += lang/vym_de.ts
    80 TRANSLATIONS += lang/vym_en.ts
    81 TRANSLATIONS += lang/vym_es.ts
    82 
    83 
    84 
    85 DESTROOT = /usr
    86 
    87 target.path = $${DESTROOT}/bin
    88 INSTALLS += target
    89 
    90 support.files = styles/ scripts/ icons/ lang/
    91 support.path = $${DESTROOT}/share/vym
    92 INSTALLS += support 
    93 
    94 doc.files = doc/*
    95 doc.path = $${DESTROOT}/share/doc/packages/vym
    96 INSTALLS += doc
    97 
    98 demo.files = demos/
    99 demo.path = $${DESTROOT}/share/vym
   100 INSTALLS += demo
   101