drake-tutorial icon indicating copy to clipboard operation
drake-tutorial copied to clipboard

Broken #include in hello.cc of the Hello, Drake! Tutorial

Open arthurlovekin opened this issue 8 months ago • 0 comments

In the file hello.cc of the Hello, Drake! tutorial, the line #include "drake/common/text_logging_gflags.h" should instead be #include "drake/common/text_logging.h"

In the file BUILD.bazel the line deps = [ "//common:text_logging_gflags", "@gflags", ], should instead be deps = [ "//common:add_text_logging_gflags", "@gflags", ],

(as of May 31 2024)

arthurlovekin avatar May 31 '24 20:05 arthurlovekin