gravatar
alpar (Alpar Juttner)
alpar@cs.elte.hu
Remove doc header (show version number on the main page) (#404)
1 3 1
default
5 files changed with 14 insertions and 6 deletions:
↑ Collapse diff ↑
Ignore white space 6 line context
... ...
@@ -98,13 +98,14 @@
98 98

	
99 99
dnl Add dependencies on files generated by configure.
100 100
AC_SUBST([CONFIG_STATUS_DEPENDENCIES],
101
  ['$(top_srcdir)/doc/Doxyfile.in $(top_srcdir)/lemon/lemon.pc.in $(top_srcdir)/cmake/version.cmake.in'])
101
  ['$(top_srcdir)/doc/Doxyfile.in $(top_srcdir)/doc/mainpage.dox.in $(top_srcdir)/lemon/lemon.pc.in $(top_srcdir)/cmake/version.cmake.in'])
102 102

	
103 103
AC_CONFIG_FILES([
104 104
Makefile
105 105
demo/Makefile
106 106
cmake/version.cmake
107 107
doc/Doxyfile
108
doc/mainpage.dox
108 109
lemon/lemon.pc
109 110
])
110 111

	
Ignore white space 6 line context
... ...
@@ -11,6 +11,12 @@
11 11
  @ONLY
12 12
)
13 13

	
14
CONFIGURE_FILE(
15
  ${PROJECT_SOURCE_DIR}/doc/mainpage.dox.in
16
  ${PROJECT_BINARY_DIR}/doc/mainpage.dox
17
  @ONLY
18
)
19

	
14 20
IF(DOXYGEN_EXECUTABLE AND GHOSTSCRIPT_EXECUTABLE)
15 21
  FILE(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html/)
16 22
  SET(GHOSTSCRIPT_OPTIONS -dNOPAUSE -dBATCH -q -dEPSCrop -dTextAlphaBits=4 -dGraphicsAlphaBits=4 -sDEVICE=pngalpha)
Ignore white space 6 line context
... ...
@@ -4,8 +4,8 @@
4 4
# Project related configuration options
5 5
#---------------------------------------------------------------------------
6 6
DOXYFILE_ENCODING      = UTF-8
7
PROJECT_NAME           = @PACKAGE_NAME@
8
PROJECT_NUMBER         = @PACKAGE_VERSION@
7
PROJECT_NAME           = 
8
PROJECT_NUMBER         = 
9 9
PROJECT_BRIEF          =
10 10
PROJECT_LOGO           =
11 11
OUTPUT_DIRECTORY       = 
... ...
@@ -96,7 +96,8 @@
96 96
                         "@abs_top_srcdir@/lemon/concepts" \
97 97
                         "@abs_top_srcdir@/demo" \
98 98
                         "@abs_top_srcdir@/tools" \
99
                         "@abs_top_srcdir@/test/test_tools.h"
99
                         "@abs_top_srcdir@/test/test_tools.h" \
100
                         "@abs_top_builddir@/doc/mainpage.dox"
100 101
INPUT_ENCODING         = UTF-8
101 102
FILE_PATTERNS          = *.h \
102 103
                         *.cc \
... ...
@@ -148,7 +149,7 @@
148 149
HTML_COLORSTYLE_GAMMA  = 80
149 150
HTML_TIMESTAMP         = YES
150 151
HTML_ALIGN_MEMBERS     = YES
151
HTML_DYNAMIC_SECTIONS  = NO
152
HTML_DYNAMIC_SECTIONS  = YES
152 153
GENERATE_DOCSET        = NO
153 154
DOCSET_FEEDNAME        = "Doxygen generated docs"
154 155
DOCSET_BUNDLE_ID       = org.doxygen.Project
Ignore white space 6 line context
... ...
@@ -17,7 +17,7 @@
17 17
 */
18 18

	
19 19
/**
20
\mainpage LEMON Documentation
20
\mainpage @PACKAGE_NAME@ @PACKAGE_VERSION@ Documentation
21 21

	
22 22
\section intro Introduction
23 23

	
0 comments (0 inline)