From d4910b7b4018c13a7be3f1616f3cfcf775dab831 Mon Sep 17 00:00:00 2001 From: Anutosh Bhat <87052487+anutosh491@users.noreply.github.com> Date: Mon, 4 Nov 2024 18:01:29 +0530 Subject: [PATCH] Fix required version for xeus-zmq (#107) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a9abac4..f59f55c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -265,7 +265,7 @@ endif () # xr # ======= if (XEUS_R_BUILD_EXECUTABLE) - find_package(xeus-zmq 1.0.3 REQUIRED) + find_package(xeus-zmq ${xeus_zmq_REQUIRED_VERSION} REQUIRED) add_executable(xr ${XEUS_R_MAIN_SRC}) target_compile_features(xr PRIVATE cxx_std_17) xeus_r_set_common_options(xr)