Github user apiri commented on a diff in the pull request:
https://github.com/apache/nifi-minifi-cpp/pull/327#discussion_r190681005
--- Diff: LibExample/CMakeLists.txt ---
@@ -59,3 +59,14 @@ else ()
target_link_libraries (generate_flow -Wl,--whole-archive
minifi-http-curl -Wl,--no-whole-archive)
endif ()
+
+add_executable(monitor_directory monitor_directory.c)
+
+# Link against minifi, yaml-cpp, civetweb-cpp, uuid, openssl and rocksdb
--- End diff --
should we need to link against yaml? not sure I understand its function in
the lib sense.
---