restore test

This commit is contained in:
Radovan Bast
2015-05-30 20:19:06 +02:00
parent ec90c0ce38
commit 0bf578eeba
4 changed files with 1 additions and 4 deletions

View File

@ -0,0 +1 @@
add_executable(example example.cpp)

7
test/cxx/src/example.cpp Normal file
View File

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