vym.pro
author insilmaril
Fri, 08 Sep 2006 12:30:09 +0000
changeset 381 c79df732d095
parent 380 5f6e176e9718
child 388 3a58c9ef4a18
permissions -rw-r--r--
rows in history window can be selected to undo/redo actions
     1 TEMPLATE	= app
     2 LANGUAGE	= C++
     3 
     4 CONFIG	+= qt warn_on release
     5 QT += qt3support
     6 
     7 HEADERS	+= aboutdialog.h \
     8 	api.h \
     9 	branchobj.h \
    10 	exportoofiledialog.h \
    11 	exports.h \
    12 	file.h \
    13 	findwindow.h \
    14 	flagobj.h \
    15 	flagrowobj.h \
    16 	floatimageobj.h \
    17 	floatobj.h \
    18 	frameobj.h \
    19 	headingobj.h \
    20 	historywindow.h \
    21 	imageobj.h \
    22 	imports.h \
    23 	linkablemapobj.h \
    24 	xlinkobj.h \
    25 	mainwindow.h \
    26 	mapcenterobj.h \
    27 	mapeditor.h \
    28 	mapobj.h \
    29 	misc.h \
    30 	noteobj.h \
    31 	ornamentedobj.h \
    32 	process.h \
    33 	showtextdialog.h\
    34 	selection.h \
    35 	texteditor.h \
    36 	version.h \
    37 	xml.h \
    38 	xsltproc.h \
    39 	settings.h \
    40 	options.h
    41 
    42 SOURCES	+= aboutdialog.cpp \
    43 	api.cpp \
    44 	branchobj.cpp \
    45 	exportoofiledialog.cpp \
    46 	exports.cpp \
    47 	file.cpp \
    48 	findwindow.cpp \
    49 	flagobj.cpp \
    50 	flagrowobj.cpp \
    51 	floatimageobj.cpp \
    52 	floatobj.cpp \
    53 	frameobj.cpp \
    54 	headingobj.cpp \
    55 	historywindow.cpp \
    56 	imageobj.cpp \
    57 	imports.cpp \
    58 	linkablemapobj.cpp \
    59 	xlinkobj.cpp \
    60 	main.cpp \
    61 	mainwindow.cpp \
    62 	mapcenterobj.cpp \
    63 	mapeditor.cpp \
    64 	mapobj.cpp \
    65 	misc.cpp \
    66 	noteobj.cpp \
    67 	ornamentedobj.cpp \
    68 	process.cpp \
    69 	showtextdialog.cpp \
    70 	selection.cpp \
    71 	texteditor.cpp \
    72 	xml.cpp \
    73 	xsltproc.cpp \
    74 	settings.cpp \
    75 	options.cpp
    76 
    77 #The following line was inserted by qt3to4, use "FORMS" later
    78 FORMS3	= exportxhtmldialog.ui \
    79 	extrainfodialog.ui \
    80 	editxlinkdialog.ui \
    81 	warningdialog.ui
    82 
    83 FORMS = historywindow.ui \
    84 	showtextdialog.ui
    85 
    86 #The following lines were inserted by qt3to4
    87 QT += xml  
    88 CONFIG += uic3
    89 
    90 TARGET  = vym
    91 TRANSLATIONS += lang/vym_de.ts
    92 TRANSLATIONS += lang/vym_en.ts
    93 TRANSLATIONS += lang/vym_es.ts
    94 TRANSLATIONS += lang/vym_it.ts
    95 
    96 count( INSTALLDIR, 0 ) {
    97 	INSTALLDIR = /usr/local
    98 }
    99 
   100 message( "Installation directory" )
   101 message( $$INSTALLDIR )
   102 
   103 
   104 target.path = $${INSTALLDIR}/bin
   105 INSTALLS += target
   106 
   107 support.files = styles/ scripts/ icons/ flags/ lang/
   108 support.path = $${INSTALLDIR}/share/vym
   109 INSTALLS += support 
   110 
   111 doc.files = tex/vym.pdf 
   112 doc.path = $${INSTALLDIR}/share/doc/packages/vym
   113 INSTALLS += doc
   114 
   115 demo.files = demos/
   116 demo.path = $${INSTALLDIR}/share/doc/packages/vym
   117 INSTALLS += demo
   118 
   119 exports.files = exports/
   120 exports.path =$${INSTALLDIR}/share/vym
   121 INSTALLS += exports
   122 
   123