commit ca55a7919d038b8fd62c272b9e7357b2f2166866 Author: Daniel Tartavel Date: Sat May 2 13:15:48 2020 +0200 Initial import diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..913b867 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.0) + +project(sshdetect LANGUAGES C) + +add_executable(sshdetect main.c) + +install(TARGETS sshdetect RUNTIME DESTINATION bin) diff --git a/main.c b/main.c new file mode 100644 index 0000000..66f31f8 --- /dev/null +++ b/main.c @@ -0,0 +1,8 @@ +#include +#include + +int main(int argc, char *argv[]) +{ + puts("Hello, World!"); + return 0; +} diff --git a/sshdetect.kdev4 b/sshdetect.kdev4 new file mode 100644 index 0000000..f8721f7 --- /dev/null +++ b/sshdetect.kdev4 @@ -0,0 +1,3 @@ +[Project] +Name=sshdetect +Manager=KDevCMakeManager