├── .gitignore ├── CMakeLists.txt ├── README.md ├── cmake └── protobuf-generate-cpp.cmake.in ├── package.xml ├── unused_parameter_warnings.patch └── unused_parameter_warnings_wire_format.patch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/protobuf_catkin/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/protobuf_catkin/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/protobuf_catkin/HEAD/README.md -------------------------------------------------------------------------------- /cmake/protobuf-generate-cpp.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/protobuf_catkin/HEAD/cmake/protobuf-generate-cpp.cmake.in -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/protobuf_catkin/HEAD/package.xml -------------------------------------------------------------------------------- /unused_parameter_warnings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/protobuf_catkin/HEAD/unused_parameter_warnings.patch -------------------------------------------------------------------------------- /unused_parameter_warnings_wire_format.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/protobuf_catkin/HEAD/unused_parameter_warnings_wire_format.patch --------------------------------------------------------------------------------