Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,13 @@ list(APPEND CATKIN_SOURCES
)

find_package(catkin REQUIRED COMPONENTS ${CATKIN_SOURCES})

#Octomap is not a a catkin package, a.k.a. it has to be found like this
find_package(octomap)

#We need boost to build succesfully
find_package(Boost REQUIRED filesystem serialization)

# needed to convert octomaps
SET(OpenGL_GL_PREFERENCE "GLVND")
find_package(gl_depth_sim)
Expand Down Expand Up @@ -51,6 +55,7 @@ list(APPEND LIBRARIES
gl_depth_sim::glad
gl_depth_sim::gl_depth_sim_interfaces
yaml-cpp
Boost::serialization
)


Expand Down
Loading