We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51e1481 commit 18d7ac8Copy full SHA for 18d7ac8
interpreter/CMakeLists.txt
@@ -523,6 +523,11 @@ set(CPPINTEROP_INCLUDE_DIRS
523
CACHE STRING "CppInterOp include directories.")
524
525
#---Set InterOp to build on Cling, this can be toggled to use Clang-REPL-------------------------------------------------------
526
-set(CPPINTEROP_USE_CLING ON BOOL "Use Cling as backend")
+set(CPPINTEROP_USE_CLING ON CACHE BOOL "")
527
+
528
+#---Disable testing on InterOp if ROOT's testing is OFF (InterOp tests are enabled by default) -------------------------------------------------------
529
+if(NOT testing)
530
+ set(CPPINTEROP_ENABLE_TESTING OFF CACHE BOOL "")
531
+endif()
532
533
add_subdirectory(CppInterOp)
0 commit comments