Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
dsogari-libcpporm-dev / usr / local / lib / cmake / cpporm / cpporm-macros.cmake
Size: Mime:
macro(select_required_components _name _default)
    string(TOUPPER ${_name} NAME)
    set(${NAME}_LIBRARIES "")
    foreach(comp ${${_name}_FIND_COMPONENTS})
        set(target ${_name}_${comp})
        if(NOT TARGET ${target})
            set(${target}_FOUND FALSE)
        else()
            set(${NAME}_LIBRARIES ${${NAME}_LIBRARIES} ${target})
            set(${target}_FOUND TRUE)
        endif()
    endforeach()
    if(${NAME}_LIBRARIES STREQUAL "")
        set(${NAME}_LIBRARIES ${_name}_${_default})
    endif()
endmacro()