Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Julien Cabieces
otb
Commits
2859c21e
Commit
2859c21e
authored
6 years ago
by
Guillaume Pasero
Browse files
Options
Downloads
Patches
Plain Diff
BUG: #1837: replace Makefile by the actual commands
parent
58769573
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
Documentation/Cookbook/CMakeLists.txt
+12
-1
12 additions, 1 deletion
Documentation/Cookbook/CMakeLists.txt
with
12 additions
and
1 deletion
Documentation/Cookbook/CMakeLists.txt
+
12
−
1
View file @
2859c21e
...
...
@@ -49,11 +49,15 @@ mark_as_advanced(SPHINX_BUILD)
find_program
(
PDFLATEX_COMMAND NAMES pdflatex
)
mark_as_advanced
(
PDFLATEX_COMMAND
)
find_program
(
MAKEINDEX_COMMAND NAMES makeindex
)
mark_as_advanced
(
MAKEINDEX_COMMAND
)
# Check that we found everything we need
foreach
(
cmd
LATEX_COMMAND
TAR_COMMAND
PDFLATEX_COMMAND
MAKEINDEX_COMMAND
SPHINX_BUILD
SH_INTERP
)
if
(
NOT
${
cmd
}
)
...
...
@@ -171,9 +175,16 @@ add_custom_target(CookBookArchive
COMMENT
"Generating Tex files from rst"
VERBATIM
)
set
(
COOKBOOK_TEX CookBook-
${
OTB_VERSION_MAJOR
}
.
${
OTB_VERSION_MINOR
}
.
${
OTB_VERSION_PATCH
}
)
add_custom_target
(
CookBookPDF
ALL
COMMAND
${
CMAKE_MAKE_PROGRAM
}
all-pdf
COMMAND
${
PDFLATEX_COMMAND
}
${
COOKBOOK_TEX
}
.tex
COMMAND
${
PDFLATEX_COMMAND
}
${
COOKBOOK_TEX
}
.tex
COMMAND
${
PDFLATEX_COMMAND
}
${
COOKBOOK_TEX
}
.tex
COMMAND
${
MAKEINDEX_COMMAND
}
-s python.ist
"
${
COOKBOOK_TEX
}
.idx"
|| true
COMMAND
${
PDFLATEX_COMMAND
}
${
COOKBOOK_TEX
}
.tex
COMMAND
${
PDFLATEX_COMMAND
}
${
COOKBOOK_TEX
}
.tex
WORKING_DIRECTORY
${
LATEX_DIR
}
DEPENDS CookBookTexFromRST
COMMENT
"Building RST documentation in pdf"
)
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