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)