From e48701bde95e4ae763a5f15c48de40f074ab354d Mon Sep 17 00:00:00 2001 From: Daniel Tartavel Date: Fri, 8 May 2020 17:51:53 +0200 Subject: [PATCH] test --- CMakeLists.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 CMakeLists.txt 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)