Skip to content
Snippets Groups Projects
Commit e2524b9d authored by Arnaud Billon's avatar Arnaud Billon :speech_balloon:
Browse files

Merge branch 'fix-osx--pvplugins-conf' into 'master'

[fix] OSX Paraview plugins conf

See merge request !329
parents 50a521ab a67ca06e
No related branches found
No related tags found
1 merge request!329[fix] OSX Paraview plugins conf
Pipeline #274879 failed
Pipeline: LidarView

#274880

    ......@@ -14,7 +14,12 @@ file(GLOB lidarview_plugins_xmls
    # Generate Configuration file
    set(lidarview_conf_content)
    # Add PV Plugins
    string(APPEND lidarview_conf_content "../${LV_INSTALL_LIBRARY_DIR}/paraview-${paraview_version}/plugins/paraview.plugins.xml\n")
    if(APPLE)
    # Unable to find a better alternative for now
    string(APPEND lidarview_conf_content "../Plugins/paraview.plugins.xml\n")
    else()
    string(APPEND lidarview_conf_content "../${LV_INSTALL_LIBRARY_DIR}/paraview-${paraview_version}/plugins/paraview.plugins.xml\n")
    endif()
    # Add LV Plugins
    foreach(lidarview_plugins_xml IN LISTS lidarview_plugins_xmls)
    get_filename_component(xml_name ${lidarview_plugins_xml} NAME)
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment