Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
laser_scan_utils
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
labrobotica
algorithms
laser_scan_utils
Merge requests
!10
Main
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Main
main
into
devel
Overview
0
Commits
2
Pipelines
1
Changes
1
Merged
Joan Vallvé Navarro
requested to merge
main
into
devel
3 years ago
Overview
0
Commits
2
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Viewing commit
e2467cd6
Prev
Next
Show latest version
1 file
+
25
−
25
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
e2467cd6
Merge branch '29-cmake-remove-iri-algorithms-from-include-install-path' into 'main'
· e2467cd6
Joan Vallvé Navarro
authored
3 years ago
Resolve "cmake: remove iri-algorithms from include install path" Closes
#29
See merge request
!9
CMakeLists.txt
+
25
−
25
Options
@@ -7,8 +7,8 @@ PROJECT(laser_scan_utils)
# Paths
SET
(
EXECUTABLE_OUTPUT_PATH
${
CMAKE_CURRENT_SOURCE_DIR
}
/bin
)
SET
(
LIBRARY_OUTPUT_PATH
${
CMAKE_CURRENT_SOURCE_DIR
}
/lib
)
set
(
INCLUDE_INSTALL_DIR include
/iri-algorithms
)
set
(
LIB_INSTALL_DIR lib
/
)
set
(
INCLUDE_INSTALL_DIR include
)
set
(
LIB_INSTALL_DIR lib
)
# Build type
IF
(
NOT CMAKE_BUILD_TYPE
)
@@ -78,38 +78,38 @@ INCLUDE_DIRECTORIES(${EIGEN3_INCLUDE_DIRS})
#headers
SET
(
HDRS_BASE
include/
laser_scan_utils/laser_scan_utils
.h
)
include/
${
PROJECT_NAME
}
/
${
PROJECT_NAME
}
.h
)
SET
(
HDRS
include/
laser_scan_utils
/corner_finder.h
include/
laser_scan_utils
/corner_finder_inscribed_angle.h
include/
laser_scan_utils
/corner_point.h
include/
laser_scan_utils
/grid_2d.h
include/
laser_scan_utils
/grid_cluster.h
include/
laser_scan_utils
/laser_scan.h
include/
laser_scan_utils
/laser_scan_with_params.h
include/
laser_scan_utils
/line_finder.h
include/
laser_scan_utils
/line_finder_hough.h
include/
laser_scan_utils
/line_finder_iterative.h
include/
laser_scan_utils
/line_finder_jump_fit.h
include/
laser_scan_utils
/line_segment.h
include/
laser_scan_utils
/point_set.h
include/
laser_scan_utils
/polyline.h
include/
laser_scan_utils
/scan_segment.h
include/
laser_scan_utils
/loop_closure_base.h
include/
laser_scan_utils
/scene_base.h
include/
${
PROJECT_NAME
}
/corner_finder.h
include/
${
PROJECT_NAME
}
/corner_finder_inscribed_angle.h
include/
${
PROJECT_NAME
}
/corner_point.h
include/
${
PROJECT_NAME
}
/grid_2d.h
include/
${
PROJECT_NAME
}
/grid_cluster.h
include/
${
PROJECT_NAME
}
/laser_scan.h
include/
${
PROJECT_NAME
}
/laser_scan_with_params.h
include/
${
PROJECT_NAME
}
/line_finder.h
include/
${
PROJECT_NAME
}
/line_finder_hough.h
include/
${
PROJECT_NAME
}
/line_finder_iterative.h
include/
${
PROJECT_NAME
}
/line_finder_jump_fit.h
include/
${
PROJECT_NAME
}
/line_segment.h
include/
${
PROJECT_NAME
}
/point_set.h
include/
${
PROJECT_NAME
}
/polyline.h
include/
${
PROJECT_NAME
}
/scan_segment.h
include/
${
PROJECT_NAME
}
/loop_closure_base.h
include/
${
PROJECT_NAME
}
/scene_base.h
)
IF
(
csm_FOUND
)
SET
(
HDRS
${
HDRS
}
include/
laser_scan_utils
/icp.h
)
include/
${
PROJECT_NAME
}
/icp.h
)
ENDIF
(
csm_FOUND
)
IF
(
falkolib_FOUND
)
SET
(
HDRS
${
HDRS
}
include/
laser_scan_utils
/corner_falko_2d.h
include/
laser_scan_utils
/loop_closure_falko.h
include/
laser_scan_utils
/scene_falko.h
include/
laser_scan_utils
/match_loop_closure_scene.h
)
include/
${
PROJECT_NAME
}
/corner_falko_2d.h
include/
${
PROJECT_NAME
}
/loop_closure_falko.h
include/
${
PROJECT_NAME
}
/scene_falko.h
include/
${
PROJECT_NAME
}
/match_loop_closure_scene.h
)
ENDIF
(
falkolib_FOUND
)
#sources
Loading