test automatic config specification

This commit is contained in:
Radovan Bast
2015-07-17 16:21:50 +02:00
parent 66db064fa6
commit a2e1e243db
4 changed files with 29 additions and 0 deletions

View File

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

View File

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