Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
6eb66721
Commit
6eb66721
authored
Jun 13, 2010
by
Dick Hollenbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add doxygen-docs target to build system
parent
02b88a70
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
55 additions
and
42 deletions
+55
-42
CMakeLists.txt
CMakeLists.txt
+12
-0
Doxyfile
Doxyfile
+43
-42
No files found.
CMakeLists.txt
View file @
6eb66721
...
...
@@ -196,6 +196,18 @@ add_subdirectory(bitmap2component)
add_subdirectory
(
demos
)
add_subdirectory
(
template
)
#================================================
# Doxygen Output
#================================================
find_package
(
Doxygen
)
if
(
DOXYGEN_FOUND
)
add_custom_target
(
doxygen-docs
${
DOXYGEN_EXECUTABLE
}
WORKING_DIRECTORY
${
CMAKE_CURRENT_SOURCE_DIR
}
DEPENDS Doxyfile
)
else
(
DOXYGEN_FOUND
)
message
(
STATUS
"WARNING: Doxygen not found - doxygen-docs (Source Docs) target not created"
)
endif
()
#================================================
# Installation parameters
...
...
Doxyfile
View file @
6eb66721
...
...
@@ -85,7 +85,8 @@ INPUT = kicad \
gerbview \
share \
include \
polygon
polygon \
potrace
INPUT_ENCODING = UTF-8
FILE_PATTERNS = *.h \
*.cpp
...
...
@@ -122,7 +123,7 @@ IGNORE_PREFIX =
# configuration options related to the HTML output
#---------------------------------------------------------------------------
GENERATE_HTML = YES
HTML_OUTPUT =
doxygen
HTML_OUTPUT =
html
HTML_FILE_EXTENSION = .html
HTML_HEADER =
HTML_FOOTER =
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment