diff --git a/Packaging.cmake b/Packaging.cmake index e676ae251..102c033e1 100644 --- a/Packaging.cmake +++ b/Packaging.cmake @@ -44,12 +44,16 @@ if(NOT CPACK_GENERATOR) if(rpmbuild_path) message(STATUS "rpmbuild found, enabling RPM for the 'package' target") list(APPEND CPACK_GENERATOR RPM) + else(rpmbuild_path) + message(STATUS "The 'package' target will not build a RPM") endif(rpmbuild_path) a_find_program(dpkg_path "dpkg" FALSE) if (dpkg_path) message(STATUS "dpkg found, enabling DEB for the 'package' target") list(APPEND CPACK_GENERATOR DEB) + else(dpkg_path) + message(STATUS "The 'package' target will not build a DEB") endif(dpkg_path) endif(NOT CPACK_GENERATOR)