Skip to content

Commit

Permalink
iox-eclipse-iceoryx#2099 Exclude Windows when building the introspection
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Hoinkis <[email protected]>
  • Loading branch information
mossmaurice committed Nov 17, 2023
1 parent d86c67b commit 8539091
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions tools/introspection/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ set(IOX_VERSION_STRING "2.90.0")

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_platform REQUIRED)
find_package(iceoryx_hoofs REQUIRED)
find_package(iceoryx_posh REQUIRED)
Expand Down Expand Up @@ -56,10 +62,3 @@ iox_add_library(
source/iceoryx_introspection_app.cpp
source/introspection_app.cpp
)

iox_add_executable(
TARGET iox-introspection-client
LIBS iceoryx_introspection::iceoryx_introspection
FILES
source/introspection_main.cpp
)

0 comments on commit 8539091

Please sign in to comment.