From 31c1abfdb3a9519f76617e59c4a0bf355cdef0a5 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Sun, 3 May 2020 16:04:52 +0100 Subject: [PATCH] Add CMake project. --- CMakeLists.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..a2746c1 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,12 @@ +cmake_minimum_required(VERSION 3.16) +project(edccchk C) + +set(CMAKE_C_STANDARD 11) + +include_directories(.) + +add_executable(edccchk + banner.h + common.h + edccchk.c + version.h)