Empty project
This commit is contained in:
commit
5072921182
3 changed files with 15 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
build*/
|
6
source/CMakeLists.txt
Normal file
6
source/CMakeLists.txt
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
project(qSniff)
|
||||||
|
|
||||||
|
|
||||||
|
add_executable(${PROJECT_NAME}
|
||||||
|
qSniff.cpp
|
||||||
|
)
|
8
source/qSniff.cpp
Normal file
8
source/qSniff.cpp
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
std::cout << "qSniff" << std::endl;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in a new issue