Github user minifirocks commented on a diff in the pull request:
https://github.com/apache/nifi-minifi-cpp/pull/183#discussion_r150858096
--- Diff: CMakeLists.txt ---
@@ -155,6 +155,13 @@ if (ENABLE_USB_CAMERA)
createExtension(USB-CAMERA-EXTENSIONS "USB CAMERA EXTENSIONS" "This
enables USB camera support" "extensions/usb-camera"
"${TEST_DIR}/usb-camera-tests" "TRUE" "thirdparty/libuvc-0.0.6")
endif()
+## TensorFlow extensions
+## Disabled by default because TF can be complex/environment-specific to
build
+option(ENABLE_TENSORFLOW "Disables the TensorFlow extensions." OFF)
+if (ENABLE_TENSORFLOW)
+ createExtension(TENSORFLOW-EXTENSIONS "TENSORFLOW EXTENSIONS" "This
enables TensorFlow support" "extensions/tensorflow"
"${TEST_DIR}/tensorflow-tests")
--- End diff --
does TF provide source built as third party library. in case we want to
build for other target like ARM, etc
---