You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@nifi.apache.org by phrocker <gi...@git.apache.org> on 2018/11/05 15:47:15 UTC

[GitHub] nifi-minifi-cpp pull request #432: MINIFICPP-648 - add processor and add pro...

Github user phrocker commented on a diff in the pull request:

    https://github.com/apache/nifi-minifi-cpp/pull/432#discussion_r230799918
  
    --- 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 --
    
    I think uuid-shared is already linked elsewhere, so I guess it was just unnecessary?


---