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
40b516de
Commit
40b516de
authored
8 years ago
by
Rashad Kanavath
Browse files
Options
Downloads
Patches
Plain Diff
SuperBuild: update macro to patch 3rd party source tree
parent
3528bdea
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
SuperBuild/CMake/SuperBuild_Macro.cmake
+24
-18
24 additions, 18 deletions
SuperBuild/CMake/SuperBuild_Macro.cmake
SuperBuild/CMake/patch.cmake
+2
-2
2 additions, 2 deletions
SuperBuild/CMake/patch.cmake
with
26 additions
and
20 deletions
SuperBuild/CMake/SuperBuild_Macro.cmake
+
24
−
18
View file @
40b516de
...
...
@@ -133,24 +133,30 @@ macro(ADD_SUPERBUILD_CONFIGURE_VAR project var name)
endmacro
(
ADD_SUPERBUILD_CONFIGURE_VAR
)
macro
(
SUPERBUILD_PATCH_SOURCE project external_project_step_name
)
set
(
extra_args
${
ARGN
}
)
# Did we get any optional args?
list
(
LENGTH extra_args num_extra_args
)
if
(
${
num_extra_args
}
GREATER 0
)
list
(
GET extra_args 0 patch_dir_arg
)
#if there is third argument set is as ${project}_PATCH_DIR
set
(
${
project
}
_PATCH_DIR
${
patch_dir_arg
}
)
set
(
${
project
}
_PATCH_DIR
${
CMAKE_SOURCE_DIR
}
/patches/
${
project
}
)
string
(
TOLOWER
${
project
}
project_
)
if
(
WIN32
)
set
(
DIFF_FILE_MATCH_STRING
"win"
)
else
()
#default value
set
(
${
project
}
_PATCH_DIR
${
CMAKE_SOURCE_DIR
}
/patches/
${
project
}
)
if
(
APPLE
)
set
(
DIFF_FILE_MATCH_STRING
"macx"
)
else
()
#Linux
set
(
DIFF_FILE_MATCH_STRING
"linux"
)
endif
()
endif
()
#WIN32
file
(
GLOB files_list
"
${${
project
}
_PATCH_DIR
}
/
${
project_
}
*
${
DIFF_FILE_MATCH_STRING
}
*diff"
)
if
(
files_list
)
message
(
STATUS
" Custom patches required for
${
project
}
"
)
ExternalProject_Add_Step
(
${
project
}
${
project
}
_custom_patch
COMMAND
${
CMAKE_COMMAND
}
-DSOURCE_DIR=
${${
project
}
_SB_SRC
}
-DPATCH_DIR=
${${
project
}
_PATCH_DIR
}
-DDIFF_FILE_MATCH_STRING=
${
DIFF_FILE_MATCH_STRING
}
-P
${
CMAKE_SOURCE_DIR
}
/CMake/patch.cmake
DEPENDEES patch update
DEPENDERS configure
)
endif
()
ExternalProject_Add_Step
(
${
project
}
${
external_project_step_name
}
COMMAND
${
CMAKE_COMMAND
}
-DSOURCE_DIR=
${${
project
}
_SB_SRC
}
-DPATCH_DIR=
${${
project
}
_PATCH_DIR
}
-P
${
CMAKE_SOURCE_DIR
}
/CMake/patch.cmake
DEPENDEES patch update
DEPENDERS configure
)
endmacro
(
SUPERBUILD_PATCH_SOURCE
)
This diff is collapsed.
Click to expand it.
SuperBuild/CMake/patch.cmake
+
2
−
2
View file @
40b516de
file
(
GLOB all_dot_diff_files
"
${
PATCH_DIR
}
/*diff"
)
file
(
GLOB all_dot_diff_files
"
${
PATCH_DIR
}
/*
${
DIFF_FILE_MATCH_STRING
}
*diff"
)
find_program
(
PATCH_PROGRAM NAMES patch
)
if
(
PATCH_PROGRAM
)
list
(
REVERSE all_dot_diff_files
)
foreach
(
dot_diff_file
${
all_dot_diff_files
}
)
# message("dot_diff_file=${dot_diff_file}")
execute_process
(
...
...
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