Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LidarView
LidarView-Superbuild
Commits
364d21ba
Commit
364d21ba
authored
Apr 26, 2017
by
Laurent Bardoux
Browse files
Add missing shared libraries to the .sh package
parent
5137b2b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Projects/unix/veloview.bundle.cmake
View file @
364d21ba
...
...
@@ -17,6 +17,7 @@ install(DIRECTORY "${install_location}/lib/veloview-${VV_VERSION}"
DESTINATION
"lib"
USE_SOURCE_PERMISSIONS
COMPONENT superbuild
)
# Sensor calibration files
file
(
GLOB shared_files
"
${
install_location
}
/share/*.xml"
)
install
(
FILES
${
shared_files
}
...
...
@@ -25,6 +26,19 @@ install(FILES ${shared_files}
)
unset
(
shared_files
)
# Workaround to ship required .so in the .sh installer
file
(
GLOB lib_files_so
"
${
install_location
}
/lib/libPythonQt.so"
"
${
install_location
}
/lib/libpcap*.so*"
"
${
install_location
}
/lib/liblas*.so*"
"
${
install_location
}
/lib/libboost*.so*"
# could be replqce by a package dependency
"
${
install_location
}
/lib/libQt*.so*"
# could be replqce by a package dependency
)
install
(
FILES
${
lib_files_so
}
DESTINATION
"lib/veloview-
${
VV_VERSION
}
"
COMPONENT superbuild
)
unset
(
lib_files_so
)
if
(
qt_ENABLED AND NOT USE_SYSTEM_qt
)
install
(
DIRECTORY
# install all qt plugins (including sqllite).
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment