From 2a840c105ccfacf22df0070b3e087c499e7a3fc9 Mon Sep 17 00:00:00 2001 From: Christopher Dunn Date: Thu, 5 Mar 2015 17:42:10 -0600 Subject: [PATCH] had trouble finding Python on Windows With this change, `make jsoncpp_check` will still fail if Python is missing, so our CI tests are unaffected. --- src/jsontestrunner/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jsontestrunner/CMakeLists.txt b/src/jsontestrunner/CMakeLists.txt index d765629..a2e48d6 100644 --- a/src/jsontestrunner/CMakeLists.txt +++ b/src/jsontestrunner/CMakeLists.txt @@ -1,4 +1,4 @@ -FIND_PACKAGE(PythonInterp 2.6 REQUIRED) +FIND_PACKAGE(PythonInterp 2.6) IF(JSONCPP_LIB_BUILD_SHARED) ADD_DEFINITIONS( -DJSON_DLL )