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