diff options
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..368e6ce --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,13 @@ +cmake_minimum_required(VERSION 3.17) +project(multihome C) + +set(CMAKE_C_STANDARD 99) + +include_directories(.) + +add_executable(multihome + multihome.c + multihome.h) + +install(TARGETS multihome + RUNTIME DESTINATION bin)
\ No newline at end of file |