From 9c539fed11428d02aedafd1f184112ceeefddbf6 Mon Sep 17 00:00:00 2001 From: AustrianToast Date: Wed, 14 Feb 2024 00:22:42 +0100 Subject: [PATCH] now supports cmake added a CMakeLists.txt and updated the .gitignore --- .gitignore | 6 ++++++ CMakeLists.txt | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 CMakeLists.txt diff --git a/.gitignore b/.gitignore index c2d39ff..b8b02a4 100644 --- a/.gitignore +++ b/.gitignore @@ -32,6 +32,12 @@ *.out *.app +# ---> Cmake +Makefile +CMakeCache.txt +cmake_install.cmake_install +CMakeFiles + # ---> Personal # Binary chksum diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..56781fc --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,3 @@ +cmake_minimum_required(VERSION 3.28) +project(chksum) +add_executable(chksum src/main.cpp src/fs_reader.cpp) \ No newline at end of file