CMake/Tests/StagingPrefix/Consumer/main.cpp

11 lines
108 B
C++

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