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