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)