mirror of
https://github.com/ttroy50/cmake-examples.git
synced 2025-12-18 12:14:36 +03:00
9 lines
112 B
C++
9 lines
112 B
C++
#include "installing/Hello.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
Hello hi;
|
|
hi.print();
|
|
return 0;
|
|
}
|