Add plain C/C++ project for CMake

Change-Id: Id9f0982092be182b976a566d0ae5eddd11307db1
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
Yuchen Deng
2011-11-17 12:26:17 +08:00
committed by hjk
parent de03b1d7c9
commit 75c7b5f7fd
8 changed files with 122 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!" << endl;
return 0;
}