From bf484095dfd9d62c4ffa37e17ae0ab740aaa7f64 Mon Sep 17 00:00:00 2001 From: jgsogo Date: Thu, 7 May 2020 19:44:33 +0200 Subject: [PATCH] Conan packages now have the canonical name from CMake for RapidJSON --- thirdparty/thirdparty-conan-build.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/thirdparty/thirdparty-conan-build.cmake b/thirdparty/thirdparty-conan-build.cmake index 5aecfbd2..e1a15ced 100644 --- a/thirdparty/thirdparty-conan-build.cmake +++ b/thirdparty/thirdparty-conan-build.cmake @@ -8,7 +8,7 @@ find_package(string-view-lite) find_package(Boost) set(CONAN_BOOST_PACKAGE_NAME Boost::Boost) find_package(fmt) -find_package(rapidjson) +find_package(RapidJSON) -set(JINJA2_PRIVATE_LIBS_INT ${CONAN_BOOST_PACKAGE_NAME} fmt::fmt rapidjson::rapidjson) +set(JINJA2_PRIVATE_LIBS_INT ${CONAN_BOOST_PACKAGE_NAME} fmt::fmt RapidJSON::RapidJSON) set(JINJA2_PUBLIC_LIBS_INT expected-lite::expected-lite variant-lite::variant-lite optional-lite::optional-lite string-view-lite::string-view-lite)