Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
Pyston
Commits
acbd648c
Commit
acbd648c
authored
Jan 07, 2015
by
Daniel Agar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doxygen switch to graphviz for prettier graphs and enable call graphs
parent
3a35b141
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
CMakeLists.txt
CMakeLists.txt
+1
-1
docs/Doxyfile.in
docs/Doxyfile.in
+3
-3
docs/INSTALLING.md
docs/INSTALLING.md
+1
-1
No files found.
CMakeLists.txt
View file @
acbd648c
...
@@ -205,5 +205,5 @@ if(DOXYGEN_FOUND)
...
@@ -205,5 +205,5 @@ if(DOXYGEN_FOUND)
configure_file
(
${
CMAKE_SOURCE_DIR
}
/docs/Doxyfile.in
${
CMAKE_BINARY_DIR
}
/Doxyfile @ONLY
)
configure_file
(
${
CMAKE_SOURCE_DIR
}
/docs/Doxyfile.in
${
CMAKE_BINARY_DIR
}
/Doxyfile @ONLY
)
add_custom_target
(
docs
${
DOXYGEN_EXECUTABLE
}
${
CMAKE_BINARY_DIR
}
/Doxyfile WORKING_DIRECTORY
${
CMAKE_BINARY_DIR
}
)
add_custom_target
(
docs
${
DOXYGEN_EXECUTABLE
}
${
CMAKE_BINARY_DIR
}
/Doxyfile WORKING_DIRECTORY
${
CMAKE_BINARY_DIR
}
)
else
()
else
()
add_custom_target
(
docs COMMAND
${
CMAKE_COMMAND
}
-E echo
"Can't create docs, doxygen not installed
\(
try sudo apt-get install doxygen on Ubuntu and then rerun cmake
\)
"
VERBATIM
)
add_custom_target
(
docs COMMAND
${
CMAKE_COMMAND
}
-E echo
"Can't create docs, doxygen not installed
\(
try sudo apt-get install doxygen
grpahviz
on Ubuntu and then rerun cmake
\)
"
VERBATIM
)
endif
()
endif
()
docs/Doxyfile.in
View file @
acbd648c
...
@@ -2100,7 +2100,7 @@ HIDE_UNDOC_RELATIONS = YES
...
@@ -2100,7 +2100,7 @@ HIDE_UNDOC_RELATIONS = YES
# set to NO
# set to NO
# The default value is: NO.
# The default value is: NO.
HAVE_DOT =
NO
HAVE_DOT =
YES
# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed
# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed
# to run in parallel. When set to 0 doxygen will base this on the number of
# to run in parallel. When set to 0 doxygen will base this on the number of
...
@@ -2216,7 +2216,7 @@ INCLUDED_BY_GRAPH = YES
...
@@ -2216,7 +2216,7 @@ INCLUDED_BY_GRAPH = YES
# The default value is: NO.
# The default value is: NO.
# This tag requires that the tag HAVE_DOT is set to YES.
# This tag requires that the tag HAVE_DOT is set to YES.
CALL_GRAPH =
NO
CALL_GRAPH =
YES
# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller
# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller
# dependency graph for every global function or class method.
# dependency graph for every global function or class method.
...
@@ -2227,7 +2227,7 @@ CALL_GRAPH = NO
...
@@ -2227,7 +2227,7 @@ CALL_GRAPH = NO
# The default value is: NO.
# The default value is: NO.
# This tag requires that the tag HAVE_DOT is set to YES.
# This tag requires that the tag HAVE_DOT is set to YES.
CALLER_GRAPH =
NO
CALLER_GRAPH =
YES
# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical
# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical
# hierarchy of all classes instead of a textual one.
# hierarchy of all classes instead of a textual one.
...
...
docs/INSTALLING.md
View file @
acbd648c
...
@@ -280,7 +280,7 @@ CXX=g++ CC=gcc PATH=~/pyston_deps/gcc-4.8.2-install/bin:$PATH:~/pyston_deps/ninj
...
@@ -280,7 +280,7 @@ CXX=g++ CC=gcc PATH=~/pyston_deps/gcc-4.8.2-install/bin:$PATH:~/pyston_deps/ninj
### doxygen
### doxygen
```
```
sudo apt-get install doxygen
sudo apt-get install doxygen
graphviz
# then run cmake (see below) and invoke the docs target
# then run cmake (see below) and invoke the docs target
ninja docs
ninja docs
...
...
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