Skip to content
Snippets Groups Projects
Commit 5c3728b0 authored by Timothée Couble's avatar Timothée Couble
Browse files

[fix] Fix calibration file export path for MacOS bundle

parent 0c0e3271
No related branches found
No related tags found
1 merge request!150[fix] Fix calibration file export path for MacOS bundle
Pipeline #303505 passed
...@@ -7,13 +7,13 @@ include(${LidarViewSuperBuild_CMAKE_DIR}/bundle/apple/LidarviewBundle.cmake) ...@@ -7,13 +7,13 @@ include(${LidarViewSuperBuild_CMAKE_DIR}/bundle/apple/LidarviewBundle.cmake)
# LidarView-Apple Specifics # LidarView-Apple Specifics
# Sensor calibration files # Sensor calibration files
file(GLOB shared_files "${superbuild_install_location}/bin/${lidarview_appname}/Contents/Resources/*.csv") file(GLOB shared_files "${share_path}/*.csv")
install(FILES ${shared_files} install(FILES ${shared_files}
DESTINATION "${lidarview_appname}/Contents/Resources" DESTINATION "${lidarview_appname}/Contents/Resources"
COMPONENT superbuild) COMPONENT superbuild)
unset(shared_files) unset(shared_files)
file(GLOB shared_files "${superbuild_install_location}/bin/${lidarview_appname}/Contents/Resources/*.xml") file(GLOB shared_files "${share_path}/*.xml")
install(FILES ${shared_files} install(FILES ${shared_files}
DESTINATION "${lidarview_appname}/Contents/Resources" DESTINATION "${lidarview_appname}/Contents/Resources"
COMPONENT superbuild) COMPONENT superbuild)
......
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