1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-06-21 04:01:40 +08:00
CMake/Example/Demo/demo.cxx

12 lines
108 B
C++

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