rules_cc/examples/shared_library_mvp/d.cc

8 lines
90 B
C++

#include "d.h"
#include <string>
#include "b.h"
std::string d() { return "-d" + b(); }