Skip to content

Commit

Permalink
Fix build issues on noetic
Browse files Browse the repository at this point in the history
  • Loading branch information
YuqianJiang committed Nov 9, 2023
1 parent 108462b commit a97eb08
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
5 changes: 3 additions & 2 deletions bwi_manipulation/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
cmake_minimum_required(VERSION 2.8.3)
project(bwi_manipulation)

set(CMAKE_CXX_STANDARD 11)
## Compile as C++14
add_compile_options(-std=c++14)

# We'll ignore any missing packages at this point and
# rely on compile errors to highlight any real problems
Expand All @@ -27,7 +28,7 @@ if (agile_grasp_FOUND)
add_definitions(-DAGILE_GRASP_AVAILABLE)
endif()

find_package(PCL 1.7 REQUIRED)
find_package(PCL 1.10 REQUIRED)


include_directories(${PCL_INCLUDE_DIRS})
Expand Down
5 changes: 4 additions & 1 deletion bwi_perception/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
cmake_minimum_required(VERSION 2.8.3)
project(bwi_perception)

set(CMAKE_CXX_STANDARD 11)
## Compile as C++14
add_compile_options(-std=c++14)

find_package( OpenCV REQUIRED)
find_package(PCL 1.10 REQUIRED)

find_package(catkin REQUIRED
actionlib_msgs
Expand Down Expand Up @@ -54,6 +56,7 @@ include_directories(
include
${catkin_INCLUDE_DIRS}
${OpenCV_INCLUDE_DIRS}
${PCL_INCLUDE_DIRS}
)


Expand Down
2 changes: 1 addition & 1 deletion bwi_perception/src/image_logging_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#elif CV_MAJOR_VERSION == 3
#include <opencv2/imgcodecs.hpp> // for cv::imwrite()
#endif
#include <opencv/highgui.h>
#include <opencv2/highgui.hpp>
#include <cv_bridge/cv_bridge.h>
#include <pcl_ros/point_cloud.h>
#include <pcl/point_types.h>
Expand Down
5 changes: 3 additions & 2 deletions bwi_scavenger/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
cmake_minimum_required(VERSION 2.8.3)
project(bwi_scavenger)

set(CMAKE_CXX_STANDARD 11)
## Compile as C++14
add_compile_options(-std=c++14)

find_package(PCL 1.7 REQUIRED)
find_package(PCL 1.10 REQUIRED)
find_package(OpenCV)

find_package(PkgConfig REQUIRED)
Expand Down
2 changes: 1 addition & 1 deletion knowledge_representation
Submodule knowledge_representation updated 37 files
+2 −1 .github/workflows/ci.yaml
+29 −0 CHANGELOG.rst
+9 −5 CMakeLists.txt
+13 −6 README.md
+42 −0 doc/annotating_maps.md
+5 −5 env-hooks/knowledge_representation.bash
+10 −10 include/knowledge_representation/EntityAttribute.h
+65 −0 include/knowledge_representation/LTMCDoor.h
+10 −10 include/knowledge_representation/LTMCEntity.h
+3 −3 include/knowledge_representation/LTMCInstance.h
+70 −0 include/knowledge_representation/LTMCLock.h
+40 −10 include/knowledge_representation/LTMCMap.h
+4 −1 include/knowledge_representation/LTMCPoint.h
+5 −1 include/knowledge_representation/LTMCPose.h
+31 −1 include/knowledge_representation/LTMCRegion.h
+104 −50 include/knowledge_representation/LongTermMemoryConduitInterface.h
+28 −3 include/knowledge_representation/LongTermMemoryConduitPostgreSQL.h
+1 −1 package.xml
+10 −6 scripts/configure_postgresql.sh
+52 −0 scripts/create_door_pgm
+5 −4 scripts/populate_with_map
+30 −12 scripts/show_me
+58 −21 sql/schema_postgresql.sql
+4 −2 src/knowledge_representation/__init__.py
+5 −0 src/knowledge_representation/knowledge_loader.py
+26 −0 src/knowledge_representation/map_image_utils.py
+220 −105 src/knowledge_representation/map_loader.py
+8 −8 src/libknowledge_rep/LongTermMemoryConduitMySQL.cpp
+145 −18 src/libknowledge_rep/LongTermMemoryConduitPostgreSQL.cpp
+100 −2 src/libknowledge_rep/python_wrapper.cpp
+3 −0 test/concept_instance.cpp
+3 −1 test/entity.cpp
+4 −2 test/loaders.py
+7 −4 test/ltmc.cpp
+13 −0 test/ltmc.py
+73 −0 test/map_types.cpp
+84 −399 test/resources/map/map_inkscape.svg

0 comments on commit a97eb08

Please sign in to comment.