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
abd13dc2
Commit
abd13dc2
authored
16 years ago
by
Emmanuel Christophe
Browse files
Options
Downloads
Patches
Plain Diff
ENH: Adding configuration variables for CPack
parent
42b20073
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
CMakeLists.txt
+18
-0
18 additions, 0 deletions
CMakeLists.txt
with
18 additions
and
0 deletions
CMakeLists.txt
+
18
−
0
View file @
abd13dc2
...
...
@@ -645,3 +645,21 @@ SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OTB_REQUIRED_CXX_FLAGS}")
SET
(
CMAKE_EXE_LINKER_FLAGS
"
${
CMAKE_EXE_LINKER_FLAGS
}
${
OTB_REQUIRED_LINK_FLAGS
}
"
)
SET
(
CMAKE_SHARED_LINKER_FLAGS
"
${
CMAKE_SHARED_LINKER_FLAGS
}
${
OTB_REQUIRED_LINK_FLAGS
}
"
)
SET
(
CMAKE_MODULE_LINKER_FLAGS
"
${
CMAKE_MODULE_LINKER_FLAGS
}
${
OTB_REQUIRED_LINK_FLAGS
}
"
)
#-----------------------------------------------------------------------------
# Parameters for CPack
SET
(
CPACK_PACKAGE_NAME
"OTB"
CACHE STRING
"Package name"
)
MARK_AS_ADVANCED
(
CPACK_PACKAGE_NAME
)
SET
(
CPACK_PACKAGE_VERSION
"
${
OTB_VERSION_STRING
}
"
CACHE STRING
"Package version number"
)
MARK_AS_ADVANCED
(
CPACK_PACKAGE_VERSION
)
SET
(
CPACK_PACKAGE_CONTACT
"debian@orfeo-toolbox.org"
CACHE STRING
"Debian package maintainer email"
)
MARK_AS_ADVANCED
(
CPACK_PACKAGE_CONTACT
)
SET
(
CPACK_PACKAGE_DESCRIPTION_SUMMARY
"ORFEO Toolbox (OTB) is a remote sensing processing library developped by CNES (French Space Agency) and distributed as an open source library of image processing algorithms. OTB offers particular functionalities for remote sensing image processing: image access (optimized read/write access for most of remote sensing image formats, meta-data access, visualization), filtering (blurring, denoising, enhancement), feature extraction (interest points, alignments, lines), image segmentation (region growing, watershed, level sets), classification (K-means, SVM, Markov random fields), change detection."
CACHE STRING
"Debian package description"
)
MARK_AS_ADVANCED
(
CPACK_PACKAGE_DESCRIPTION_SUMMARY
)
SET
(
CPACK_DEBIAN_PACKAGE_DEPENDS
"libgdal1-1.5.0 (>= 1.5.1-0), libfltk1 (>= 1.1.7-3), libcurl3 (>=7.15.5-1etch1), libfftw3-3 (>=3.1.2-3.1)"
CACHE STRING
"Debian package dependance"
)
MARK_AS_ADVANCED
(
CPACK_DEBIAN_PACKAGE_DEPENDS
)
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