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
Antoine Belvire
otb
Commits
b0d6a51a
Commit
b0d6a51a
authored
10 years ago
by
Guillaume Pasero
Browse files
Options
Downloads
Patches
Plain Diff
ENH: add macro for system prefix
parent
6da90eb6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMake/SuperBuild_Macro.cmake
+14
-0
14 additions, 0 deletions
CMake/SuperBuild_Macro.cmake
with
14 additions
and
0 deletions
CMake/SuperBuild_Macro.cmake
+
14
−
0
View file @
b0d6a51a
...
...
@@ -31,3 +31,17 @@ macro(ADD_SYSTEM_LOCATION)
endif
()
endforeach
(
var
)
endmacro
(
ADD_SYSTEM_LOCATION
)
# Macro ADD_SYSTEM_PREFIX : defines a system prefix for the given project
# - creates a cache variable SYSTEM_${PROJECT}_PREFIX
macro
(
ADD_SYSTEM_PREFIX
)
cmake_parse_arguments
(
NEW_SYSPREFIX
""
"PROJECT"
""
${
ARGN
}
)
set
(
SYSTEM_
${
NEW_SYSPREFIX_PROJECT
}
_PREFIX
""
CACHE PATH
"Set a custom system prefix"
)
mark_as_advanced
(
SYSTEM_
${
NEW_SYSPREFIX_PROJECT
}
_PREFIX
)
if
(
USE_SYSTEM_
${
NEW_SYSPREFIX_PROJECT
}
)
set_property
(
CACHE SYSTEM_
${
NEW_SYSPREFIX_PROJECT
}
_PREFIX PROPERTY TYPE PATH
)
else
()
set_property
(
CACHE SYSTEM_
${
NEW_SYSPREFIX_PROJECT
}
_PREFIX PROPERTY TYPE INTERNAL
)
endif
()
endmacro
(
ADD_SYSTEM_PREFIX
)
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