vym.pro
author insilmaril
Sun, 30 Jan 2005 12:58:47 +0000
branchvendor
changeset 0 7a96bd401351
child 2 608f976aa7bb
child 62 85683324f94a
child 83 e90f5bef70c8
permissions -rw-r--r--
Initial import.
     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 	mainwindow.h \
    39 	mapcenterobj.h \
    40 	mapeditor.h \
    41 	mapobj.h \
    42 	misc.h \
    43 	noteobj.h \
    44 	ornamentedobj.h \
    45 	process.h \
    46 	selection.h \
    47 	texteditor.h \
    48 	version.h \
    49 	xml.h \
    50 	settings.h \
    51 	options.h
    52 SOURCES	+= branchobj.cpp \
    53 	exports.cpp \
    54 	findwindow.cpp \
    55 	flagobj.cpp \
    56 	flagrowobj.cpp \
    57 	floatimageobj.cpp \
    58 	floatobj.cpp \
    59 	frameobj.cpp \
    60 	headingobj.cpp \
    61 	imageobj.cpp \
    62 	linkablemapobj.cpp \
    63 	main.cpp \
    64 	mainwindow.cpp \
    65 	mapcenterobj.cpp \
    66 	mapeditor.cpp \
    67 	mapobj.cpp \
    68 	misc.cpp \
    69 	noteobj.cpp \
    70 	ornamentedobj.cpp \
    71 	process.cpp \
    72 	selection.cpp \
    73 	texteditor.cpp \
    74 	xml.cpp \
    75 	settings.cpp \
    76 	options.cpp
    77 FORMS	= exporthtmldialog.ui \
    78 	exportxhtmldialog.ui \
    79 	showtextdialog.ui \
    80 	extrainfodialog.ui
    81