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