aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2020-08-30 00:58:23 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2020-08-30 00:58:23 -0400
commit4688d7b297cc6c87837a6c42853c39b5b3a1dd3e (patch)
tree80f1eb4650a0baa077121fd9ccac7fc5628dde2d /CMakeLists.txt
parentc1e235d28d16151d42ce409bc446af8ca77d1efc (diff)
downloadmultihome-4688d7b297cc6c87837a6c42853c39b5b3a1dd3e.tar.gz
Initial commit
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt13
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