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