Github user phrocker commented on a diff in the pull request:
https://github.com/apache/nifi-minifi-cpp/pull/432#discussion_r230803774
--- Diff: libminifi/CMakeLists.txt ---
@@ -141,11 +141,14 @@ endif()
SET (LIBMINIFI core-minifi PARENT_SCOPE)
if (ENABLE_PYTHON)
-if (NOT APPLE)
#### shared
add_library(core-minifi-shared SHARED ${SOURCES})
-target_link_libraries(core-minifi-shared ${CMAKE_DL_LIBS} uuid-shared
yaml-cpp)
+if (APPLE)
--- End diff --
Indeed -- https://issues.apache.org/jira/browse/MINIFICPP-660 already
exists. I've pre-empted that in favor of CoAP, but should get back to that
soon. Python is kind of WIP. I do have some tests from that branch that cover
what you are talking about. I'll try and re-surface them as soon as I get away
from CoAP.
---