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
Core Modules
dune-common
Commits
dd73b7be
Commit
dd73b7be
authored
12 years ago
by
Markus Blatt
Browse files
Options
Downloads
Patches
Plain Diff
It is "if(not <variable>)"
[[Imported from SVN: r6687]]
parent
4640fde2
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cmake/modules/DuneDoc.cmake
+10
-9
10 additions, 9 deletions
cmake/modules/DuneDoc.cmake
with
10 additions
and
9 deletions
cmake/modules/DuneDoc.cmake
+
10
−
9
View file @
dd73b7be
...
...
@@ -2,23 +2,24 @@ FIND_PACKAGE(LATEX)
FIND_PROGRAM
(
IMAGEMAGICK_CONVERT convert
DOC
"The convert program that comes with ImageMagick (available at http://www.imagemagick.org)."
)
set
(
LATEX_USABLE ON
)
if
(
NOT
${
LATEX_COMPILER
}
)
set
(
LATEX_USABLE
"ON"
)
if
(
NOT LATEX_COMPILER
)
message
(
WARING
" Need latex to create documentation!"
)
set
(
LATEX_USABLE
)
endif
(
NOT
${
LATEX_COMPILER
}
)
if
(
NOT
${
BIBTEX_COMPILER
}
)
endif
(
NOT LATEX_COMPILER
)
if
(
NOT BIBTEX_COMPILER
)
message
(
WARING
" Need bibtex to create documentation!"
)
set
(
LATEX_USABLE
)
endif
(
NOT
${
BIBTEX_COMPILER
}
)
if
(
NOT
${
MAKEINDEX_COMPILER
}
)
endif
(
NOT BIBTEX_COMPILER
)
if
(
NOT MAKEINDEX_COMPILER
)
message
(
WARING
" Need makeindex to create documentation!"
)
set
(
LATEX_USABLE
)
endif
(
NOT
${
MAKEINDEX_COMPILER
}
)
if
(
NOT
${
IMAGEMAGICK_CONVERT
}
)
endif
(
NOT MAKEINDEX_COMPILER
)
if
(
NOT IMAGEMAGICK_CONVERT
)
message
(
WARNING
" Need imagemagick to create latex documentation!"
)
set
(
LATEX_USABLE
)
endif
(
NOT
${
IMAGEMAGICK_CONVERT
}
)
endif
(
NOT IMAGEMAGICK_CONVERT
)
if
(
LATEX_USABLE
)
include
(
UseLATEX
)
endif
(
LATEX_USABLE
)
...
...
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