From 6e95bb94409d7b86bbf0a5a36dac0f7c4335ccd7 Mon Sep 17 00:00:00 2001 From: Johan Mabille Date: Wed, 20 Mar 2024 15:10:11 +0100 Subject: [PATCH] Fixed exported requirement on nlohmann_json --- xeusConfig.cmake.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xeusConfig.cmake.in b/xeusConfig.cmake.in index 720608b5..a94e26ed 100644 --- a/xeusConfig.cmake.in +++ b/xeusConfig.cmake.in @@ -25,7 +25,7 @@ include(CMakeFindDependencyMacro) find_dependency(xtl @xtl_REQUIRED_VERSION@) # nlohmann_json requires libraries that exchange json objects to be linked # with the same version of nlohmann_json. -find_dependency(nlohmann_json @nlohmann_json_REQUIRED_VERSION@ EXACT) +find_dependency(nlohmann_json @nlohmann_json_VERSION@ EXACT) # This is required when linking with the static target if(NOT EMSCRIPTEN)