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