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

    https://github.com/apache/nifi-minifi-cpp/pull/54#discussion_r102715874
  
    --- Diff: libminifi/CMakeLists.txt ---
    @@ -36,18 +36,34 @@ ENDIF(POLICY CMP0048)
     set(CMAKE_CXX_STANDARD 11)
     set(CMAKE_CXX_STANDARD_REQUIRED ON)
     
    +include(CheckCXXCompilerFlag)
    +CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
    +CHECK_CXX_COMPILER_FLAG("-std=c++0x" COMPILER_SUPPORTS_CXX0X)
    +if(COMPILER_SUPPORTS_CXX11)
    +    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -g")
    +elseif(COMPILER_SUPPORTS_CXX0X)
    +    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
    +else()
    + message(STATUS "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. 
Please use a different C++ compiler.")
    +endif()
    +
     include_directories(../include)
     include_directories(../thirdparty/yaml-cpp-yaml-cpp-0.5.3/include)
     include_directories(include)
     
    -file(GLOB SOURCES "src/*.cpp")
    +file(GLOB_RECURSE SOURCES "src/*.cpp")
    --- End diff --
    
    I generally don't like to see this. Since we only have two sub directories, 
we can call them out. 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to