Skip to content

Commit

Permalink
remove glog
Browse files Browse the repository at this point in the history
Signed-off-by: kminoda <[email protected]>
  • Loading branch information
kminoda committed Nov 8, 2023
1 parent 3bee453 commit a495687
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ project(deviation_estimator)
find_package(autoware_cmake REQUIRED)
autoware_package()

find_package(glog REQUIRED)

ament_auto_add_library(deviation_estimator_lib SHARED
src/deviation_estimator.cpp
src/utils.cpp
Expand All @@ -19,7 +17,7 @@ ament_auto_add_executable(deviation_estimator src/deviation_estimator_node.cpp)

target_compile_options(deviation_estimator PUBLIC -g -Wall -Wextra -Wpedantic -Werror)

target_link_libraries(deviation_estimator deviation_estimator_lib glog::glog)
target_link_libraries(deviation_estimator deviation_estimator_lib)
target_include_directories(deviation_estimator PUBLIC include)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

<depend>autoware_auto_vehicle_msgs</depend>
<depend>geometry_msgs</depend>
<depend>libgoogle-glog-dev</depend>
<depend>nav_msgs</depend>
<depend>rclcpp</depend>
<depend>sensor_msgs</depend>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,11 @@
// limitations under the License.

#include "deviation_estimator/deviation_estimator.hpp"
#include <glog/logging.h>

#include <memory>

int main(int argc, char ** argv)
{
google::InitGoogleLogging(argv[0]);
google::InstallFailureSignalHandler();

rclcpp::init(argc, argv);
rclcpp::NodeOptions node_options;
auto node = std::make_shared<DeviationEstimator>("deviation_estimator", node_options);
Expand Down

0 comments on commit a495687

Please sign in to comment.