Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
3e0252eb
Commit
3e0252eb
authored
Nov 10, 2016
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs: drop plantuml support
parent
bdf66153
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
23 deletions
+4
-23
CMakeLists.txt
CMakeLists.txt
+4
-16
CMakeLists.txt
doc/CMakeLists.txt
+0
-6
Doxyfile.in
doc/Doxyfile.in
+0
-1
No files found.
CMakeLists.txt
View file @
3e0252eb
...
...
@@ -562,23 +562,12 @@ include(cmake/OpenCVFindLibsPerf.cmake)
# Detect other 3rd-party libraries/tools
# ----------------------------------------------------------------------------
# --- Doxygen and PlantUML for documentation ---
unset
(
DOXYGEN_FOUND CACHE
)
# --- Doxygen for documentation ---
if
(
BUILD_DOCS
)
find_package
(
Doxygen
)
if
(
PLANTUML_JAR
)
message
(
STATUS
"Using PlantUML path from command line:
${
PLANTUML_JAR
}
"
)
elseif
(
DEFINED ENV{PLANTUML_JAR}
)
set
(
PLANTUML_JAR $ENV{PLANTUML_JAR}
)
message
(
STATUS
"Using PLantUML path from environment:
${
PLANTUML_JAR
}
"
)
else
()
message
(
STATUS
"To enable PlantUML support, set PLANTUML_JAR environment variable or pass -DPLANTUML_JAR=<filepath> option to cmake"
)
endif
()
if
(
PLANTUML_JAR AND DOXYGEN_VERSION VERSION_LESS 1.8.8
)
message
(
STATUS
"You need Doxygen version 1.8.8 or later to use PlantUML"
)
unset
(
PLANTUML_JAR
)
endif
()
endif
(
BUILD_DOCS
)
else
()
unset
(
DOXYGEN_FOUND CACHE
)
endif
()
# --- Python Support ---
include
(
cmake/OpenCVDetectPython.cmake
)
...
...
@@ -1341,7 +1330,6 @@ if(BUILD_DOCS)
status
(
""
)
status
(
" Documentation:"
)
status
(
" Doxygen:"
DOXYGEN_FOUND THEN
"
${
DOXYGEN_EXECUTABLE
}
(ver
${
DOXYGEN_VERSION
}
)"
ELSE NO
)
status
(
" PlantUML:"
PLANTUML_JAR THEN
"
${
PLANTUML_JAR
}
"
ELSE NO
)
endif
()
# ========================== samples and tests ==========================
...
...
doc/CMakeLists.txt
View file @
3e0252eb
...
...
@@ -159,12 +159,6 @@ if(BUILD_DOCS AND DOXYGEN_FOUND)
list
(
APPEND CMAKE_DOXYGEN_HTML_FILES
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/mymath.sty"
)
string
(
REPLACE
";"
"
\\\n
"
CMAKE_DOXYGEN_HTML_FILES
"
${
CMAKE_DOXYGEN_HTML_FILES
}
"
)
if
(
PLANTUML_JAR
)
set
(
CMAKE_DOXYGEN_PLANTUML_SUPPORT
"PLANTUML_JAR_PATH =
${
PLANTUML_JAR
}
\n
"
)
else
()
set
(
CMAKE_DOXYGEN_PLANTUML_SUPPORT
"ALIASES += startuml{1}=
\"
@warning __No plantuml!__
\\
n
\\
n @if DUMMY_PLANTUML_CODE
\"
enduml=
\"
@endif
\"\n
"
)
endif
()
# writing file
configure_file
(
Doxyfile.in
${
doxyfile
}
@ONLY
)
configure_file
(
root.markdown.in
${
rootfile
}
@ONLY
)
...
...
doc/Doxyfile.in
View file @
3e0252eb
...
...
@@ -286,4 +286,3 @@ DOT_TRANSPARENT = NO
DOT_MULTI_TARGETS = NO
GENERATE_LEGEND = YES
DOT_CLEANUP = YES
@CMAKE_DOXYGEN_PLANTUML_SUPPORT@
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