diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..86a9657 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.pro.user \ No newline at end of file diff --git a/SimpleConnection.pro b/SimpleConnection.pro new file mode 100644 index 0000000..7f95685 --- /dev/null +++ b/SimpleConnection.pro @@ -0,0 +1,7 @@ +TEMPLATE = app +CONFIG += console c++11 +CONFIG -= app_bundle +CONFIG -= qt + +SOURCES += \ + main.cpp diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..3129fb9 --- /dev/null +++ b/main.cpp @@ -0,0 +1,9 @@ +#include + +using namespace std; + +int main() +{ + cout << "Hello World!" << endl; + return 0; +}