summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-12-07 12:30:20 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-12-07 12:30:20 (GMT)
commitdfdf4323434ec466613e9c358da98a4be868986c (patch)
treefb32b0c91ecd71df69285c8f8840633cb4214d4f /examples
parent7bcd67f4affa7c3ce2ba6f652c893488952396a7 (diff)
downloadDoxygen-dfdf4323434ec466613e9c358da98a4be868986c.zip
Doxygen-dfdf4323434ec466613e9c358da98a4be868986c.tar.gz
Doxygen-dfdf4323434ec466613e9c358da98a4be868986c.tar.bz2
Correcting tag example and uniform calling all examples
- tag example corrected in respect to changed definition (a while ago) regarding the name of the Example example - regenerating tag file (based on current doxygen version) - made building of all examples uniform
Diffstat (limited to 'examples')
-rw-r--r--examples/CMakeLists.txt6
-rw-r--r--examples/example.cfg2
-rw-r--r--examples/example.tag14
-rw-r--r--examples/tag.cfg4
-rw-r--r--examples/tag.cpp2
-rw-r--r--examples/templ.cfg4
6 files changed, 12 insertions, 20 deletions
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
index 601ed5a..0f34c6d 100644
--- a/examples/CMakeLists.txt
+++ b/examples/CMakeLists.txt
@@ -163,8 +163,9 @@ add_custom_command(
add_custom_command(
COMMAND ${EXECUTABLE_OUTPUT_PATH}/doxygen tag.cfg
+ COMMAND ${PYTHON_EXECUTABLE} ${TOP}/examples/strip_example.py < ${PROJECT_BINARY_DIR}/html/examples/tag/latex/refman.tex > ${PROJECT_BINARY_DIR}/html/examples/tag/latex/refman_doc.tex
DEPENDS doxygen tag.cpp tag.cfg ${PROJECT_BINARY_DIR}/html/examples/example/html/index.html ${TOP}/examples/strip_example.py
- OUTPUT ${PROJECT_BINARY_DIR}/html/examples/tag/html/index.html
+ OUTPUT ${PROJECT_BINARY_DIR}/html/examples/tag/html/index.html ${PROJECT_BINARY_DIR}/html/examples/tag/latex/refman_doc.tex
)
add_custom_command(
@@ -183,8 +184,9 @@ add_custom_command(
add_custom_command(
COMMAND ${EXECUTABLE_OUTPUT_PATH}/doxygen templ.cfg
+ COMMAND ${PYTHON_EXECUTABLE} ${TOP}/examples/strip_example.py < ${PROJECT_BINARY_DIR}/html/examples/template/latex/refman.tex > ${PROJECT_BINARY_DIR}/html/examples/template/latex/refman_doc.tex
DEPENDS doxygen templ.cpp templ.cfg ${TOP}/examples/strip_example.py
- OUTPUT ${PROJECT_BINARY_DIR}/html/examples/template/html/index.html
+ OUTPUT ${PROJECT_BINARY_DIR}/html/examples/template/html/index.html ${PROJECT_BINARY_DIR}/html/examples/template/latex/refman_doc.tex
)
add_custom_command(
diff --git a/examples/example.cfg b/examples/example.cfg
index c55c6b9..22266d4 100644
--- a/examples/example.cfg
+++ b/examples/example.cfg
@@ -1,6 +1,6 @@
PROJECT_NAME = "Example Command"
OUTPUT_DIRECTORY = ../html/examples/example
-#GENERATE_TAGFILE = example.tag
+GENERATE_TAGFILE = example.tag
GENERATE_LATEX = YES
GENERATE_MAN = NO
GENERATE_RTF = NO
diff --git a/examples/example.tag b/examples/example.tag
deleted file mode 100644
index 98b2efd..0000000
--- a/examples/example.tag
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version='1.0' encoding='UTF-8' standalone='yes' ?>
-<tagfile>
- <compound kind="class">
- <name>Test</name>
- <filename>class_test.html</filename>
- <member kind="function">
- <type>void</type>
- <name>example</name>
- <anchorfile>class_test.html</anchorfile>
- <anchor>a47b775f65718978f1ffcd96376f8ecfa</anchor>
- <arglist>()</arglist>
- </member>
- </compound>
-</tagfile>
diff --git a/examples/tag.cfg b/examples/tag.cfg
index 97d7d2f..823b5a7 100644
--- a/examples/tag.cfg
+++ b/examples/tag.cfg
@@ -1,6 +1,6 @@
PROJECT_NAME = "Tag Files"
OUTPUT_DIRECTORY = ../html/examples/tag
-GENERATE_LATEX = NO
+GENERATE_LATEX = YES
GENERATE_MAN = NO
GENERATE_RTF = NO
CASE_SENSE_NAMES = NO
@@ -10,3 +10,5 @@ PERL_PATH = perl
QUIET = YES
JAVADOC_AUTOBRIEF = YES
SEARCHENGINE = NO
+COMPACT_LATEX = YES
+LATEX_HIDE_INDICES = YES
diff --git a/examples/tag.cpp b/examples/tag.cpp
index 6497dd4..74435c1 100644
--- a/examples/tag.cpp
+++ b/examples/tag.cpp
@@ -1,7 +1,7 @@
/*! A class that is inherited from the external class Test.
*/
-class Tag : public Test
+class Tag : public Example_Test
{
public:
/*! an overloaded member. */
diff --git a/examples/templ.cfg b/examples/templ.cfg
index eb59559..9d42e79 100644
--- a/examples/templ.cfg
+++ b/examples/templ.cfg
@@ -1,6 +1,6 @@
PROJECT_NAME = "Template Test"
OUTPUT_DIRECTORY = ../html/examples/template
-GENERATE_LATEX = NO
+GENERATE_LATEX = YES
GENERATE_MAN = NO
GENERATE_RTF = NO
CASE_SENSE_NAMES = NO
@@ -8,3 +8,5 @@ INPUT = templ.cpp
QUIET = YES
JAVADOC_AUTOBRIEF = YES
SEARCHENGINE = NO
+COMPACT_LATEX = YES
+LATEX_HIDE_INDICES = YES