CMake/Tests/StagingPrefix/Consumer/main.cpp

11 lines
109 B
C++

#include "foo.h"
#include "bar.h"
int main(int, char **)
{
Foo f;
Bar b;
return f.foo() + b.bar();
}