forked from AprilRobotics/apriltag
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(CMakeLists.txt): adding cpack gen config
- Loading branch information
1 parent
74b51ff
commit 631325c
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -177,3 +177,19 @@ endif(OpenCV_FOUND) | |
|
||
# install example programs | ||
install(TARGETS apriltag_demo RUNTIME DESTINATION bin) | ||
|
||
set(CPACK_PACKAGE_NAME "apriltag") | ||
set(CPACK_PACKAGE_VERSION "3.3.0") | ||
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "AprilTag is a visual fiducial system popular for robotics research.") | ||
|
||
set(CPACK_GENERATOR "DEB") | ||
|
||
set(CPACK_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}-Linux-x86_64.tgz") | ||
|
||
set(CPACK_DEBIAN_PACKAGE_ARCHITECTURE "amd64") | ||
|
||
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Jose Rafael <[email protected]>") | ||
|
||
set (CPACK_DEBIAN_PACKAGE_DEPENDS "opencv (>= 4.5.5)") | ||
|
||
include(CPack) |