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
Container registry
Model registry
Operate
Environments
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
Main Repositories
otb
Merge requests
!279
BUG:
#1623
: fix doxygen search bar
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
BUG:
#1623
: fix doxygen search bar
1623-doxy-search-php
into
develop
Overview
2
Commits
1
Pipelines
0
Changes
2
Merged
Guillaume Pasero
requested to merge
1623-doxy-search-php
into
develop
6 years ago
Overview
2
Commits
1
Pipelines
0
Changes
2
Expand
PHP 7 only accepts scripts declared between
<?php ... ?>
Closes
#1623 (closed)
2
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
d34488eb
1 commit,
6 years ago
2 files
+
46
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
Utilities/Doxygen/CMakeLists.txt
+
4
−
4
Options
@@ -168,10 +168,10 @@ if (BUILD_DOCUMENTATION)
add_custom_target
(
Documentation-doxygen
COMMAND
${
DOXYGEN_EXECUTABLE
}
${
OTB_BINARY_DIR
}
/Utilities/Doxygen/doxygen.config
#
COMMAND ${CMAKE_COMMAND} -E copy
# ${OTB_SOURCE_DIR}/Utilities/Doxygen/favicon.ico
#
${OTB_
BINARY_DIR}/Documentation/Doxygen/html
# DEPENDS
${OTB_BINARY_DIR}/Documentation/Doxygen/
Examples.dox
#
fix php section delimiters for PHP 7
COMMAND
${
PERL_EXECUTABLE
}
-i
"
${
OTB_
SOURCE_DIR
}
/Utilities/Doxygen/fix_php7.pl"
"
${
OTB_BINARY_DIR
}
/Documentation/Doxygen/
html/*.php"
WORKING_DIRECTORY
${
OTB_BINARY_DIR
}
/Utilities/Doxygen
)
Loading