Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Show more breadcrumbs
Tobias Leibner
dune-common
Commits
0f9dd028
Commit
0f9dd028
authored
15 years ago
by
Markus Blatt
Browse files
Options
Downloads
Patches
Plain Diff
Fall back to message and creation of empty Doxy file as doxygen should
not be a prerequisite for Dune. [[Imported from SVN: r5575]]
parent
481017ea
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bin/duneproject
+9
-1
9 additions, 1 deletion
bin/duneproject
with
9 additions
and
1 deletion
bin/duneproject
+
9
−
1
View file @
0f9dd028
...
@@ -602,7 +602,15 @@ mkdir "$PROJECT/doc/doxygen"
...
@@ -602,7 +602,15 @@ mkdir "$PROJECT/doc/doxygen"
#################### template Doxyfile ########################
#################### template Doxyfile ########################
echo
"-
$PROJECT
/doc/doxygen/Doxyfile"
echo
"-
$PROJECT
/doc/doxygen/Doxyfile"
doxygen
-g
"
$PROJECT
/doc/doxygen/Doxyfile"
>
/dev/null
if
[
"x
`
which doxygen
`
"
==
"x"
]
;
then
echo
"Doxygen is not installed! Creating empty file
$PROJECT
/doc/doxygen/Doxyfile"
echo
"You might want to install doxygen and call "
echo
"doxygen -g
\"
$PROJECT
/doc/doxygen/Doxyfile
\"
"
echo
"manually later."
echo
/dev/null
>
$PROJECT
/doc/doxygen/Doxyfile
else
doxygen
-g
"
$PROJECT
/doc/doxygen/Doxyfile"
>
/dev/null
fi
################# doc/doxygen/Makefile.am #####################
################# doc/doxygen/Makefile.am #####################
...
...
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