vym.pro
author insilmaril
Thu, 24 Mar 2005 20:48:58 +0000
changeset 92 ec8c73975c1a
parent 91 855c486b9360
child 94 6783e13bb05d
permissions -rw-r--r--
added modifier modes (color,link,copy). Not fully functional yet
     1 TARGET  = vym
     2 TRANSLATIONS += lang/vym_de.ts
     3 TRANSLATIONS += lang/vym_en.ts
     4 
     5 TEMPLATE	= app
     6 LANGUAGE	= C++
     7 
     8 CONFIG	+= qt warn_on release
     9 
    10 DESTROOT = /usr
    11 
    12 target.path = $${DESTROOT}/bin
    13 INSTALLS += target
    14 
    15 support.files = styles/ scripts/ icons/ lang/
    16 support.path = $${DESTROOT}/share/vym
    17 INSTALLS += support 
    18 
    19 doc.files = doc/*
    20 doc.path = $${DESTROOT}/share/doc/packages/vym
    21 INSTALLS += doc
    22 
    23 demo.files = demos/
    24 demo.path = $${DESTROOT}/share/vym
    25 INSTALLS += demo
    26 
    27 
    28 HEADERS	+= branchobj.h \
    29 	exports.h \
    30 	findwindow.h \
    31 	flagobj.h \
    32 	flagrowobj.h \
    33 	floatimageobj.h \
    34 	floatobj.h \
    35 	frameobj.h \
    36 	headingobj.h \
    37 	imageobj.h \
    38 	linkablemapobj.h \
    39 	linkobj.h \
    40 	mainwindow.h \
    41 	mapcenterobj.h \
    42 	mapeditor.h \
    43 	mapobj.h \
    44 	misc.h \
    45 	noteobj.h \
    46 	ornamentedobj.h \
    47 	process.h \
    48 	selection.h \
    49 	texteditor.h \
    50 	version.h \
    51 	xml.h \
    52 	settings.h \
    53 	options.h
    54 SOURCES	+= branchobj.cpp \
    55 	exports.cpp \
    56 	findwindow.cpp \
    57 	flagobj.cpp \
    58 	flagrowobj.cpp \
    59 	floatimageobj.cpp \
    60 	floatobj.cpp \
    61 	frameobj.cpp \
    62 	headingobj.cpp \
    63 	imageobj.cpp \
    64 	linkablemapobj.cpp \
    65 	linkobj.cpp \
    66 	main.cpp \
    67 	mainwindow.cpp \
    68 	mapcenterobj.cpp \
    69 	mapeditor.cpp \
    70 	mapobj.cpp \
    71 	misc.cpp \
    72 	noteobj.cpp \
    73 	ornamentedobj.cpp \
    74 	process.cpp \
    75 	selection.cpp \
    76 	texteditor.cpp \
    77 	xml.cpp \
    78 	settings.cpp \
    79 	options.cpp
    80 FORMS	= exporthtmldialog.ui \
    81 	exportxhtmldialog.ui \
    82 	showtextdialog.ui \
    83 	extrainfodialog.ui
    84