Empty project

pull/3/head
mandlm 2017-10-17 13:19:25 +02:00
commit 5072921182
3 changed files with 15 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
build*/

6
source/CMakeLists.txt Normal file
View File

@ -0,0 +1,6 @@
project(qSniff)
add_executable(${PROJECT_NAME}
qSniff.cpp
)

8
source/qSniff.cpp Normal file
View File

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