From b809a30f19d8adcd870e928e5938a7b9bc6ad3cf Mon Sep 17 00:00:00 2001 From: Simon Hoinkis Date: Fri, 17 Nov 2023 11:37:47 +0100 Subject: [PATCH] iox-#2099 Exclude Windows when building the introspection Signed-off-by: Simon Hoinkis --- tools/introspection/CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/introspection/CMakeLists.txt b/tools/introspection/CMakeLists.txt index 9d4c946049c..b35749284be 100644 --- a/tools/introspection/CMakeLists.txt +++ b/tools/introspection/CMakeLists.txt @@ -21,6 +21,12 @@ set(IOX_VERSION_STRING "2.0.3") project(iceoryx_introspection VERSION ${IOX_VERSION_STRING}) +# Do not build the introspection on Windows due to missing ncurses +if(WIN32) + message(STATUS "The introspection client is not supported on Windows") + return() +endif() + find_package(iceoryx_hoofs REQUIRED) find_package(iceoryx_posh REQUIRED)