Add basic classes for application. Move source around and properly fix up build system to link and use correct c++ compiler version.

This commit is contained in:
Kevin Whitaker
2017-01-27 22:44:36 -05:00
parent 54029126a1
commit 093f74a846
6 changed files with 102 additions and 2 deletions

8
src/main.cpp Normal file
View File

@@ -0,0 +1,8 @@
#include <iostream>
#include "WebInterface.h"
int main ( int argc, char** argv )
{
std::cout << "Hello, world!" << std::endl;
return 0;
}