Skip to content

Commit 2799c6e

Browse files
committed
cleanup and fixes
1 parent 51ec909 commit 2799c6e

18 files changed

+0
-5781
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.gitlab-ci.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

CMakeLists.txt

Lines changed: 0 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,8 @@ set(PACKAGE_DEPENDENCIES
1414
roscpp
1515
sensor_msgs
1616
geometry_msgs
17-
hyperspectral_calibration
1817
label_manager
1918
tf
20-
pcl_ros
21-
pcl_definitions
2219
)
2320

2421
find_package(catkin REQUIRED COMPONENTS ${PACKAGE_DEPENDENCIES})
@@ -32,9 +29,6 @@ add_action_files(
3229
action
3330
FILES
3431
Reconstruct.action
35-
SendCloud.action
36-
StartReconstruction.action
37-
StopReconstruction.action
3832
)
3933

4034
find_path(OPENGL_INC gl.h /usr/include/GL)
@@ -105,26 +99,6 @@ target_link_libraries(${PROJECT_NAME}_reconstruction
10599
${PCL_LIBRARIES}
106100
)
107101

108-
add_executable(${PROJECT_NAME}_remote_reconstruction_client
109-
src/remote_reconstruction_client.cpp
110-
)
111-
112-
add_executable(${PROJECT_NAME}_remote_reconstruction
113-
src/colors.cpp
114-
src/conversions.cpp
115-
src/remote_reconstruction.cpp
116-
src/FileObserver.cpp
117-
)
118-
target_link_libraries(${PROJECT_NAME}_remote_reconstruction
119-
${catkin_LIBRARIES}
120-
${LVR_LIBRARIES}
121-
${PCL_LIBRARIES}
122-
)
123-
124-
target_link_libraries(${PROJECT_NAME}_remote_reconstruction_client
125-
${catkin_LIBRARIES}
126-
${PCL_LIBRARIES}
127-
)
128102
if(OPENCL_FOUND)
129103
target_compile_definitions(${PROJECT_NAME}_reconstruction PRIVATE OPENCL_FOUND=1)
130104
endif()
@@ -144,33 +118,7 @@ target_link_libraries(${PROJECT_NAME}_debug
144118
find_package(HDF5 REQUIRED COMPONENTS C CXX HL)
145119
include_directories(${HDF5_INCLUDE_DIRS})
146120
link_directories(${HDF5_LIBRARIES} ${HDF5_HL_LIBRARIES})
147-
# create executable
148-
add_executable(${PROJECT_NAME}_hdf5_to_msg src/hdf5_to_msg.cpp)
149-
target_link_libraries(${PROJECT_NAME}_hdf5_to_msg
150-
${catkin_LIBRARIES}
151-
${LVR_LIBRARIES}
152-
${PCL_LIBRARIES}
153-
${HDF5_LIBRARIES}
154-
${PROJECT_NAME}_conversions
155-
)
156121

157-
158-
add_dependencies(${PROJECT_NAME}_remote_reconstruction
159-
${catkin_EXPORTED_TARGETS}
160-
${PROJECT_NAME}_gencfg
161-
${PROJECT_NAME}_gencpp
162-
)
163-
add_dependencies(${PROJECT_NAME}_remote_reconstruction_client
164-
${catkin_EXPORTED_TARGETS}
165-
${PROJECT_NAME}_gencfg
166-
${PROJECT_NAME}_gencpp
167-
)
168-
add_dependencies(${PROJECT_NAME}_reconstruction
169-
${lvr_ros_EXPORTED_TARGETS}
170-
${catkin_EXPORTED_TARGETS}
171-
${PROJECT_NAME}_gencfg
172-
${PROJECT_NAME}_gencpp
173-
)
174122
add_dependencies(${PROJECT_NAME}_conversions
175123
${catkin_EXPORTED_TARGETS}
176124
${PROJECT_NAME}_gencfg

0 commit comments

Comments
 (0)