Commit f82aa1be authored by Josiah Kane's avatar Josiah Kane Committed by Davis E. King

Add a default cpack "package" target. (#1330)

* Add a default cpack "package" target.

* Move cpack line to live with the other install and configure directives.
parent d3bd9d61
......@@ -24,6 +24,7 @@ endif()
include(cmake_utils/release_build_by_default)
include(cmake_utils/use_cpp_11.cmake)
set(CPACK_PACKAGE_NAME "dlib")
set(CPACK_PACKAGE_VERSION_MAJOR "19")
set(CPACK_PACKAGE_VERSION_MINOR "12")
......@@ -38,7 +39,6 @@ if(has_parent)
endif()
endif()
if (DLIB_IN_PROJECT_BUILD)
# Check if we are being built as part of a pybind11 module.
......@@ -849,6 +849,11 @@ if (NOT TARGET dlib)
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/dlib-1.pc"
DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
# Add a cpack "package" target. This will create an archive containing
# the built library file, the header files, and cmake and pkgconfig
# configuration files.
include(CPack)
endif()
endif()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment