From b0cb93769f09fe2dda8952e3b419875d4e9f2942 Mon Sep 17 00:00:00 2001 From: Christian Beier Date: Sun, 15 Dec 2024 19:23:37 +0100 Subject: [PATCH] build: log which module is processed --- CMakeLists.txt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index be874425..11f88503 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,9 +23,13 @@ configure_file(config.h.cmake_in config.h) option(BUILD_SHARED_LIBS "Build shared libraries" OFF) - +# wxservdisc +message("-----wxServDisc-----") set(WXSERVDISC_INSTALL OFF CACHE BOOL "Set to OFF to not include wxservdisc artifacts in install") add_subdirectory(libwxservdisc/src) + +# libvncclient +message("-----LibVNCClient-----") set(LIBVNCSERVER_INSTALL OFF CACHE BOOL "Set to OFF to not include libvncserver artifacts in install") set(WITH_EXAMPLES OFF CACHE BOOL "Set to OFF to not build libvncserver examples") add_subdirectory(libvncserver) @@ -34,7 +38,7 @@ add_subdirectory(libvncserver) # # source proper # - +message("-----MultiVNC-----") add_subdirectory(src)