8 lines
154 B
CMake
8 lines
154 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
|
|
project(sshdetect LANGUAGES C)
|
|
|
|
add_executable(sshdetect main.c)
|
|
|
|
install(TARGETS sshdetect RUNTIME DESTINATION bin)
|