Skip to content

Commit

Permalink
disabling Werror because of deprecation warnings from ceres in Ubuntu…
Browse files Browse the repository at this point in the history
… 22.10
  • Loading branch information
lucasw committed Jul 4, 2023
1 parent edfb22e commit 7be1c54
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 7be1c54

Please sign in to comment.