Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tnl-dev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TNL
tnl-dev
Commits
c6391559
There was an error fetching the commit references. Please try again later.
Commit
c6391559
authored
6 years ago
by
Tomáš Oberhuber
Browse files
Options
Downloads
Patches
Plain Diff
Added script and config for documentation generation by Doxygen.
parent
f2ba089b
No related branches found
No related tags found
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
Doxyfile
+2494
-0
2494 additions, 0 deletions
Doxyfile
generate-doc
+20
-0
20 additions, 0 deletions
generate-doc
with
2515 additions
and
0 deletions
.gitignore
+
1
−
0
View file @
c6391559
...
...
@@ -2,6 +2,7 @@
/Debug
/Release
/Testing
/Documentation
/CMakeLists.txt.user
/doc/_build
/Build
...
...
This diff is collapsed.
Click to expand it.
Doxyfile
0 → 100644
+
2494
−
0
View file @
c6391559
This diff is collapsed.
Click to expand it.
generate-doc
0 → 100755
+
20
−
0
View file @
c6391559
#!/bin/bash
PREFIX
=
${
HOME
}
/.local
INSTALL
=
"yes"
for
option
in
"
$@
"
do
case
$option
in
--prefix
=
*
)
PREFIX
=
"
${
option
#*=
}
"
;;
--install
=
*
)
INSTALL
=
"
${
option
#*=
}
"
;;
esac
done
doxygen
if
[[
"
$INSTALL
"
==
"yes"
]]
;
then
cp
-r
Documentation/
*
${
PREFIX
}
/share/doc
fi
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment