rules_cc/examples/shared_library_mvp/b.cc

9 lines
111 B
C++

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