Skip to content
Snippets Groups Projects
Commit e748591b authored by Gatien Ferret's avatar Gatien Ferret
Browse files

Merge branch 'fix/fixResourcesPathMacOSBundle' into 'master'

[fix] Fix calibration file export path for MacOS bundle

See merge request !150
parents f932abbd 5c3728b0
Branches
Tags
1 merge request!150[fix] Fix calibration file export path for MacOS bundle
Pipeline #303776 passed
......@@ -7,13 +7,13 @@ include(${LidarViewSuperBuild_CMAKE_DIR}/bundle/apple/LidarviewBundle.cmake)
# LidarView-Apple Specifics
# 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}
DESTINATION "${lidarview_appname}/Contents/Resources"
COMPONENT superbuild)
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}
DESTINATION "${lidarview_appname}/Contents/Resources"
COMPONENT superbuild)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment