rules_foreign_cc/examples/ninja_simple/test_libb.cpp

16 lines
305 B
C++

#include "liba.h"
#include <iostream>
#include <stdexcept>
#include <string>
int main(int argc, char* argv[])
{
std::string result = hello_liba();
if (result != "Hello from LIBA!")
{
throw std::runtime_error("Wrong result: " + result);
}
std::cout << "Everything's fine!";
}