From ea6fe95db4186cbc9782d1b06bb01917c8dd35bb Mon Sep 17 00:00:00 2001 From: Patrick Wuttke Date: Sat, 17 May 2025 10:36:03 +0200 Subject: [PATCH] Disabled tests for json. --- recipes/json/recipe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/json/recipe.py b/recipes/json/recipe.py index d5086da..16f31d3 100644 --- a/recipes/json/recipe.py +++ b/recipes/json/recipe.py @@ -7,7 +7,7 @@ from SCons.Script import * def _git_cook(env: Environment, repo: dict) -> dict: checkout_root = repo['checkout_root'] - build_result = env.CMakeProject(project_root=checkout_root) + build_result = env.CMakeProject(project_root=checkout_root, generate_args=['-DJSON_BuildTests=OFF']) return { 'CPPPATH': build_result['CPPPATH'], 'CMAKE_PREFIX_PATH': [build_result['install_dir']]