commit 5072921182284010836be99ad0208446451c92c0 Author: Michael Mandl Date: Tue Oct 17 13:19:25 2017 +0200 Empty project diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a5309e6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +build*/ diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt new file mode 100644 index 0000000..9c108a5 --- /dev/null +++ b/source/CMakeLists.txt @@ -0,0 +1,6 @@ +project(qSniff) + + +add_executable(${PROJECT_NAME} + qSniff.cpp +) diff --git a/source/qSniff.cpp b/source/qSniff.cpp new file mode 100644 index 0000000..e4d6d7c --- /dev/null +++ b/source/qSniff.cpp @@ -0,0 +1,8 @@ +#include + +int main(int argc, char **argv) +{ + std::cout << "qSniff" << std::endl; + + return 0; +}