From 5072921182284010836be99ad0208446451c92c0 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Tue, 17 Oct 2017 13:19:25 +0200 Subject: [PATCH] Empty project --- .gitignore | 1 + source/CMakeLists.txt | 6 ++++++ source/qSniff.cpp | 8 ++++++++ 3 files changed, 15 insertions(+) create mode 100644 .gitignore create mode 100644 source/CMakeLists.txt create mode 100644 source/qSniff.cpp 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; +}