Skip to content

Commit

Permalink
disabling Werror because of ceres deprecation in Ubuntu 22.10
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasw committed Feb 5, 2023
1 parent 0c111b7 commit d147d77
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion fuse_graphs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ catkin_package(
###########
## Build ##
###########
add_compile_options(-Wall -Werror)
# disabling until deprecated ceres::Problem::Options::local_parameterization_ownership is resolved
add_compile_options(-Wall) # -Werror)

## fuse_graphs library
add_library(${PROJECT_NAME}
Expand Down
2 changes: 1 addition & 1 deletion fuse_optimizers/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ catkin_package(
###########
## Build ##
###########
add_compile_options(-Wall -Werror)
add_compile_options(-Wall) # -Werror)

## fuse_optimizers library
add_library(${PROJECT_NAME}
Expand Down

0 comments on commit d147d77

Please sign in to comment.