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
... ...
@@ -97,15 +97,16 @@
97 97
AC_CHECK_FUNCS(gettimeofday times ctime_r)
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

	
111 112
AC_OUTPUT
Ignore white space 6 line context
... ...
@@ -10,8 +10,14 @@
10 10
  ${PROJECT_BINARY_DIR}/doc/Doxyfile
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)
17 23
  ADD_CUSTOM_TARGET(html
Ignore white space 6 line context
... ...
@@ -3,10 +3,10 @@
3 3
#---------------------------------------------------------------------------
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       = 
12 12
CREATE_SUBDIRS         = NO
... ...
@@ -95,9 +95,10 @@
95 95
                         "@abs_top_srcdir@/lemon/bits" \
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 \
103 104
                         *.dox
... ...
@@ -147,9 +148,9 @@
147 148
HTML_COLORSTYLE_SAT    = 100
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
155 156
DOCSET_PUBLISHER_ID    = org.doxygen.Publisher
Ignore white space 8 line context
... ...
@@ -16,9 +16,9 @@
16 16
 *
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

	
24 24
\subsection whatis What is LEMON
0 comments (0 inline)