Github user achristianson commented on a diff in the pull request:
https://github.com/apache/nifi-minifi-cpp/pull/183#discussion_r150864615
--- 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 --
@phrocker also look at BUILDING.md if you haven't looked at it yet. While
there are only instructions for CentOS 7 currently, the procedure should be
similar for other environments (installing TF-deps like CUDA/cuDNN, building &
installing TF to /usr/local).
---