We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a43a95e commit 458892aCopy full SHA for 458892a
CMakeLists.txt
@@ -86,6 +86,13 @@ if (NOT TARGET xtl)
86
endif ()
87
if (NOT TARGET xeus AND NOT TARGET xeus-static)
88
find_package(xeus REQUIRED)
89
+ if (xeus_FOUND)
90
+ if (xeus_VERSION VERSION_LESS xeus_REQUIRED_VERSION)
91
+ message(FATAL_ERROR "xeus version must be >= ${xeus_REQUIRED_VERSION}, found: ${xeus_VERSION}")
92
+ else ()
93
+ message(STATUS "Found compatible xeus version: ${xeus_VERSION}")
94
+ endif ()
95
+ endif()
96
97
98
# Flags
0 commit comments