CMake/Example/Demo/demo.cxx

12 lines
108 B
C++

#include <iostream>
#include "hello.h"
extern Hello hello;
int main()
{
hello.Print();
return 0;
}