Github user phrocker commented on a diff in the pull request:
https://github.com/apache/nifi-minifi-cpp/pull/157#discussion_r150709695
--- Diff: CMakeLists.txt ---
@@ -155,6 +156,12 @@ 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()
+## Bustache/template extensions
+option(DISABLE_BUSTACHE "Disables Bustache (ApplyTemplate) support." OFF)
+if (NOT DISABLE_BUSTACHE)
--- End diff --
Let's make this ENABLE_BUSTACHE
---