From 7d866318c4152683b1145eeb8ef94044b0ee5910 Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Sun, 17 Apr 2016 16:12:08 +0200 Subject: [PATCH] Packaging: Print some information about supported packages Signed-off-by: Uli Schlachter --- Packaging.cmake | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Packaging.cmake b/Packaging.cmake index e676ae25..102c033e 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)