Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
LidarView-Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LidarView
LidarView-Core
Commits
a67ca06e
Commit
a67ca06e
authored
2 years ago
by
Arnaud Billon
Browse files
Options
Downloads
Patches
Plain Diff
[fix] OSX Paraview plugins conf
parent
50a521ab
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!329
[fix] OSX Paraview plugins conf
Pipeline
#274876
failed
2 years ago
Stage: test
Pipeline: LidarView
#274877
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMake/GenerateConfiguration.cmake.in
+6
-1
6 additions, 1 deletion
CMake/GenerateConfiguration.cmake.in
with
6 additions
and
1 deletion
CMake/GenerateConfiguration.cmake.in
+
6
−
1
View file @
a67ca06e
...
...
@@ -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)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment