Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
7821fe2b
Commit
7821fe2b
authored
Jan 18, 2014
by
Alexander Smorkalov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial Linux packages build rools for CPack.
parent
b75cbfde
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
130 additions
and
1 deletion
+130
-1
CMakeLists.txt
CMakeLists.txt
+6
-0
LICENSE
LICENSE
+33
-0
OpenCVModule.cmake
cmake/OpenCVModule.cmake
+1
-1
OpenCVPackaging.cmake
cmake/OpenCVPackaging.cmake
+90
-0
No files found.
CMakeLists.txt
View file @
7821fe2b
...
...
@@ -975,3 +975,9 @@ ocv_finalize_status()
if
(
"
${
CMAKE_CURRENT_SOURCE_DIR
}
"
STREQUAL
"
${
CMAKE_CURRENT_BINARY_DIR
}
"
)
message
(
WARNING
"The source directory is the same as binary directory.
\"
make clean
\"
may damage the source tree"
)
endif
()
# ----------------------------------------------------------------------------
# CPack stuff
# ----------------------------------------------------------------------------
include
(
cmake/OpenCVPackaging.cmake
)
LICENSE
0 → 100644
View file @
7821fe2b
By downloading, copying, installing or using the software you agree to this license.
If you do not agree to this license, do not download, install,
copy or use the software.
License Agreement
For Open Source Computer Vision Library
(3-clause BSD License)
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the names of the copyright holders nor the names of the contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
This software is provided by the copyright holders and contributors "as is" and
any express or implied warranties, including, but not limited to, the implied
warranties of merchantability and fitness for a particular purpose are disclaimed.
In no event shall copyright holders or contributors be liable for any direct,
indirect, incidental, special, exemplary, or consequential damages
(including, but not limited to, procurement of substitute goods or services;
loss of use, data, or profits; or business interruption) however caused
and on any theory of liability, whether in contract, strict liability,
or tort (including negligence or otherwise) arising in any way out of
the use of this software, even if advised of the possibility of such damage.
cmake/OpenCVModule.cmake
View file @
7821fe2b
...
...
@@ -577,7 +577,7 @@ macro(ocv_create_module)
endif
()
ocv_install_target
(
${
the_module
}
EXPORT OpenCVModules
RUNTIME DESTINATION
${
OPENCV_BIN_INSTALL_PATH
}
COMPONENT
dev
RUNTIME DESTINATION
${
OPENCV_BIN_INSTALL_PATH
}
COMPONENT
libs
LIBRARY DESTINATION
${
OPENCV_LIB_INSTALL_PATH
}
COMPONENT libs
ARCHIVE DESTINATION
${
OPENCV_LIB_INSTALL_PATH
}
COMPONENT dev
)
...
...
cmake/OpenCVPackaging.cmake
0 → 100644
View file @
7821fe2b
if
(
EXISTS
"
${
CMAKE_ROOT
}
/Modules/CPack.cmake"
)
set
(
CPACK_set_DESTDIR
"on"
)
if
(
NOT OPENCV_CUSTOM_PACKAGE_INFO
)
set
(
CPACK_PACKAGE_DESCRIPTION
"Open Computer Vision Library"
)
set
(
CPACK_PACKAGE_DESCRIPTION_SUMMARY
"OpenCV"
)
set
(
CPACK_PACKAGE_VENDOR
"OpenCV Foundation"
)
set
(
CPACK_RESOURCE_FILE_LICENSE
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/LICENSE"
)
set
(
CPACK_PACKAGE_CONTACT
"admin@opencv.org"
)
endif
(
NOT OPENCV_CUSTOM_PACKAGE_INFO
)
set
(
CPACK_PACKAGE_VERSION_MAJOR
"
${
OPENCV_VERSION_MAJOR
}
"
)
set
(
CPACK_PACKAGE_VERSION_MINOR
"
${
OPENCV_VERSION_MINOR
}
"
)
set
(
CPACK_PACKAGE_VERSION_PATCH
"
${
OPENCV_VERSION_PATCH
}
"
)
#arch
if
(
X86
)
set
(
CPACK_DEBIAN_ARCHITECTURE
"i386"
)
set
(
CPACK_RPM_PACKAGE_ARCHITECTURE
"i686"
)
elseif
(
X86_64
)
set
(
CPACK_DEBIAN_ARCHITECTURE
"amd64"
)
set
(
CPACK_RPM_PACKAGE_ARCHITECTURE
"amd64"
)
elseif
(
ARM
)
set
(
CPACK_DEBIAN_ARCHITECTURE
"armhf"
)
set
(
CPACK_RPM_PACKAGE_ARCHITECTURE
"armhf"
)
else
()
set
(
CPACK_DEBIAN_ARCHITECTURE
${
CMAKE_SYSTEM_PROCESSOR
}
)
set
(
CPACK_RPM_PACKAGE_ARCHITECTURE
${
CMAKE_SYSTEM_PROCESSOR
}
)
endif
()
if
(
CPACK_GENERATOR STREQUAL
"DEB"
)
set
(
OPENCV_PACKAGE_ARCH_SUFFIX
${
CPACK_DEBIAN_ARCHITECTURE
}
)
elseif
(
CPACK_GENERATOR STREQUAL
"RPM"
)
set
(
OPENCV_PACKAGE_ARCH_SUFFIX
${
CPACK_RPM_PACKAGE_ARCHITECTURE
}
)
else
()
set
(
OPENCV_PACKAGE_ARCH_SUFFIX
${
CMAKE_SYSTEM_PROCESSOR
}
)
endif
()
set
(
CPACK_PACKAGE_FILE_NAME
"
${
CMAKE_PROJECT_NAME
}
-
${
OPENCV_VCSVERSION
}
-
${
OPENCV_PACKAGE_ARCH_SUFFIX
}
"
)
set
(
CPACK_SOURCE_PACKAGE_FILE_NAME
"
${
CMAKE_PROJECT_NAME
}
-
${
OPENCV_VCSVERSION
}
-
${
OPENCV_PACKAGE_ARCH_SUFFIX
}
"
)
#rpm options
set
(
CPACK_RPM_COMPONENT_INSTALL TRUE
)
set
(
CPACK_RPM_PACKAGE_LICENSE
${
CPACK_RESOURCE_FILE_LICENSE
}
)
#deb options
set
(
CPACK_DEB_COMPONENT_INSTALL TRUE
)
set
(
CPACK_DEBIAN_PACKAGE_PRIORITY
"extra"
)
#depencencies
set
(
CPACK_DEBIAN_PACKAGE_SHLIBDEPS TRUE
)
set
(
CPACK_COMPONENT_samples_DEPENDS libs
)
set
(
CPACK_COMPONENT_dev_DEPENDS libs
)
set
(
CPACK_COMPONENT_docs_DEPENDS libs
)
set
(
CPACK_COMPONENT_java_DEPENDS libs
)
set
(
CPACK_COMPONENT_python_DEPENDS libs
)
if
(
NOT OPENCV_CUSTOM_PACKAGE_INFO
)
set
(
CPACK_COMPONENT_libs_DISPLAY_NAME
"lib
${
CMAKE_PROJECT_NAME
}
"
)
set
(
CPACK_COMPONENT_libs_DESCRIPTION
"Open Computer Vision Library"
)
set
(
CPACK_COMPONENT_python_DISPLAY_NAME
"lib
${
CMAKE_PROJECT_NAME
}
-python"
)
set
(
CPACK_COMPONENT_python_DESCRIPTION
"Python bindings for Open Computer Vision Library"
)
set
(
CPACK_COMPONENT_java_DISPLAY_NAME
"lib
${
CMAKE_PROJECT_NAME
}
-java"
)
set
(
CPACK_COMPONENT_java_DESCRIPTION
"Java bindings for Open Computer Vision Library"
)
set
(
CPACK_COMPONENT_dev_DISPLAY_NAME
"lib
${
CMAKE_PROJECT_NAME
}
-dev"
)
set
(
CPACK_COMPONENT_dev_DESCRIPTION
"Development files for Open Computer Vision Library"
)
set
(
CPACK_COMPONENT_docs_DISPLAY_NAME
"lib
${
CMAKE_PROJECT_NAME
}
-docs"
)
set
(
CPACK_COMPONENT_docs_DESCRIPTION
"Documentation for Open Computer Vision Library"
)
set
(
CPACK_COMPONENT_samples_DISPLAY_NAME
"lib
${
CMAKE_PROJECT_NAME
}
-samples"
)
set
(
CPACK_COMPONENT_samples_DESCRIPTION
"Samples for Open Computer Vision Library"
)
endif
(
NOT OPENCV_CUSTOM_PACKAGE_INFO
)
if
(
NOT OPENCV_CUSTOM_PACKAGE_LAYOUT
)
set
(
CPACK_libs_COMPONENT_INSTALL TRUE
)
set
(
CPACK_dev_COMPONENT_INSTALL TRUE
)
set
(
CPACK_docs_COMPONENT_INSTALL TRUE
)
set
(
CPACK_python_COMPONENT_INSTALL TRUE
)
set
(
CPACK_java_COMPONENT_INSTALL TRUE
)
set
(
CPACK_samples_COMPONENT_INSTALL TRUE
)
endif
(
NOT OPENCV_CUSTOM_PACKAGE_LAYOUT
)
include
(
CPack
)
ENDif
(
EXISTS
"
${
CMAKE_ROOT
}
/Modules/CPack.cmake"
)
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment