DTux
/
dtux__sshdetect
Archived
1
0
Fork 0

Initial import

This commit is contained in:
Daniel Tartavel 2020-05-02 13:15:48 +02:00
commit ca55a7919d
3 changed files with 18 additions and 0 deletions

7
CMakeLists.txt Normal file
View File

@ -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)

8
main.c Normal file
View File

@ -0,0 +1,8 @@
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
puts("Hello, World!");
return 0;
}

3
sshdetect.kdev4 Normal file
View File

@ -0,0 +1,3 @@
[Project]
Name=sshdetect
Manager=KDevCMakeManager