vym.pro
author insilmaril
Tue, 24 Jan 2006 15:09:48 +0000
changeset 187 2658871fdda4
parent 179 d1d6d9c29f9f
child 191 2658342e3310
permissions -rw-r--r--
Introduced basic export to Open Document format
     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 	exports.h \
    10 	file.h \
    11 	findwindow.h \
    12 	flagobj.h \
    13 	flagrowobj.h \
    14 	floatimageobj.h \
    15 	floatobj.h \
    16 	frameobj.h \
    17 	headingobj.h \
    18 	imageobj.h \
    19 	linkablemapobj.h \
    20 	xlinkobj.h \
    21 	mainwindow.h \
    22 	mapcenterobj.h \
    23 	mapeditor.h \
    24 	mapobj.h \
    25 	misc.h \
    26 	noteobj.h \
    27 	ornamentedobj.h \
    28 	process.h \
    29 	selection.h \
    30 	texteditor.h \
    31 	version.h \
    32 	xml.h \
    33 	settings.h \
    34 	options.h
    35 
    36 SOURCES	+= aboutdialog.cpp \
    37 	api.cpp \
    38 	branchobj.cpp \
    39 	exports.cpp \
    40 	file.cpp \
    41 	findwindow.cpp \
    42 	flagobj.cpp \
    43 	flagrowobj.cpp \
    44 	floatimageobj.cpp \
    45 	floatobj.cpp \
    46 	frameobj.cpp \
    47 	headingobj.cpp \
    48 	imageobj.cpp \
    49 	linkablemapobj.cpp \
    50 	xlinkobj.cpp \
    51 	main.cpp \
    52 	mainwindow.cpp \
    53 	mapcenterobj.cpp \
    54 	mapeditor.cpp \
    55 	mapobj.cpp \
    56 	misc.cpp \
    57 	noteobj.cpp \
    58 	ornamentedobj.cpp \
    59 	process.cpp \
    60 	selection.cpp \
    61 	texteditor.cpp \
    62 	xml.cpp \
    63 	settings.cpp \
    64 	options.cpp
    65 
    66 FORMS	= exporthtmldialog.ui \
    67 	exportxhtmldialog.ui \
    68 	showtextdialog.ui \
    69 	extrainfodialog.ui \
    70 	editxlinkdialog.ui
    71 
    72 TARGET  = vym
    73 TRANSLATIONS += lang/vym_de.ts
    74 TRANSLATIONS += lang/vym_en.ts
    75 TRANSLATIONS += lang/vym_es.ts
    76 
    77 
    78 
    79 DESTROOT = /usr
    80 
    81 target.path = $${DESTROOT}/bin
    82 INSTALLS += target
    83 
    84 support.files = styles/ scripts/ icons/ lang/
    85 support.path = $${DESTROOT}/share/vym
    86 INSTALLS += support 
    87 
    88 doc.files = doc/*
    89 doc.path = $${DESTROOT}/share/doc/packages/vym
    90 INSTALLS += doc
    91 
    92 demo.files = demos/
    93 demo.path = $${DESTROOT}/share/vym
    94 INSTALLS += demo
    95