From 1b49962a8e09c8224441248bfb4b476647cfa65f Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Fri, 11 Mar 2022 22:30:59 -0600 Subject: [PATCH] [nostalgia] Remove Conan jsoncpp package --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index e0591479..2f7aae12 100644 --- a/conanfile.py +++ b/conanfile.py @@ -2,7 +2,7 @@ from conans import ConanFile, CMake class NostalgiaConan(ConanFile): settings = 'os', 'compiler', 'build_type', 'arch' - requires = 'jsoncpp/1.9.4', 'imgui/1.86' + requires = 'imgui/1.86' generators = 'cmake', 'cmake_find_package', 'cmake_paths' default_options = { }