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

[fix] OSX Paraview plugins conf

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

#274877

    ......@@ -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