From 28363ffc2927f3a4c3b50a6ee7265d50e6b520a1 Mon Sep 17 00:00:00 2001 From: Jan-Frederick Musiol Date: Mon, 29 Oct 2018 10:24:03 +0100 Subject: [PATCH] added CMakeLists.txt --- 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..d31eda2 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.5) +project(netcalc) + +set(CMAKE_C_STANDARD 11) +set(SOURCE_FILES netcalc.c) + +add_executable(netcalc ${SOURCE_FILES}) \ No newline at end of file