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
David Youssefi
otb
Commits
672216ff
Commit
672216ff
authored
15 years ago
by
Emmanuel Christophe
Browse files
Options
Downloads
Patches
Plain Diff
BUG: fix boost installation
parent
9a85886d
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
Utilities/BGL/CMakeLists.txt
+1
-1
1 addition, 1 deletion
Utilities/BGL/CMakeLists.txt
Utilities/BGL/boost/CMakeLists.txt
+15
-3
15 additions, 3 deletions
Utilities/BGL/boost/CMakeLists.txt
with
16 additions
and
4 deletions
Utilities/BGL/CMakeLists.txt
+
1
−
1
View file @
672216ff
PROJECT
(
BGL
)
SUBDIR
S
(
boost
)
ADD_
SUBDIR
ECTORY
(
boost
)
This diff is collapsed.
Click to expand it.
Utilities/BGL/boost/CMakeLists.txt
+
15
−
3
View file @
672216ff
IF
(
NOT OTB_INSTALL_NO_DEVELOPMENT
)
FILE
(
GLOB_RECURSE __files1
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/*.h"
)
FILE
(
GLOB_RECURSE __files2
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/*.txx"
)
FILE
(
GLOB_RECURSE __files3
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/*.hpp"
)
set
(
BOOST_FOLDER_LIST
"bfunctional;bind;butility;config;detail;function;graph;iterator;mpl;optional;pending;preprocessor;spirit;tuple;type_traits"
)
FILE
(
GLOB __files1
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/*.h"
)
FILE
(
GLOB __files2
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/*.txx"
)
FILE
(
GLOB __files3
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/*.hpp"
)
INSTALL
(
FILES
${
__files1
}
${
__files2
}
${
__files3
}
DESTINATION
${
OTB_INSTALL_INCLUDE_DIR_CM24
}
/Utilities/BGL/boost
COMPONENT Development
)
foreach
(
folder
${
BOOST_FOLDER_LIST
}
)
FILE
(
GLOB __files1
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/
${
folder
}
/*.h"
)
FILE
(
GLOB __files2
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/
${
folder
}
/*.txx"
)
FILE
(
GLOB __files3
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/
${
folder
}
/*.hpp"
)
INSTALL
(
FILES
${
__files1
}
${
__files2
}
${
__files3
}
DESTINATION
${
OTB_INSTALL_INCLUDE_DIR_CM24
}
/Utilities/BGL/boost/
${
folder
}
COMPONENT Development
)
endforeach
(
folder
)
ENDIF
(
NOT OTB_INSTALL_NO_DEVELOPMENT
)
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