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
f018faaa
Commit
f018faaa
authored
2 years ago
by
Arnaud Billon
Browse files
Options
Downloads
Patches
Plain Diff
[refactor] liblas Interface Library
parent
e2524b9d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!330
[refactor] liblas Interface Library
Pipeline
#275028
failed
2 years ago
Stage: test
Pipeline: LidarView
#275029
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
LidarPlugin/Plugin/LidarCore/CMakeLists.txt
+4
-2
4 additions, 2 deletions
LidarPlugin/Plugin/LidarCore/CMakeLists.txt
with
4 additions
and
2 deletions
LidarPlugin/Plugin/LidarCore/CMakeLists.txt
+
4
−
2
View file @
f018faaa
...
...
@@ -61,8 +61,10 @@ endif()
find_library
(
liblas_LIBRARY
${
LASNAME
}
DOC
"liblas library"
)
find_path
(
liblas_INCLUDE_DIR liblas/version.hpp DOC
"liblas include directory"
)
list
(
APPEND LIDARPLUGIN_DEPS_INCLUDE_DIRS
${
liblas_INCLUDE_DIR
}
)
list
(
APPEND LIDARPLUGIN_DEPS
${
liblas_LIBRARY
}
)
add_library
(
liblas INTERFACE
)
target_link_libraries
(
liblas INTERFACE
${
liblas_LIBRARY
}
)
target_include_directories
(
liblas INTERFACE
${
liblas_INCLUDE_DIR
}
)
list
(
APPEND LIDARPLUGIN_DEPS liblas
)
#--------------------------------------
# Eigen dependency
#--------------------------------------
...
...
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