now supports cmake

added a CMakeLists.txt and updated the .gitignore
This commit is contained in:
AustrianToast 2024-02-14 00:22:42 +01:00
parent 1f3f03fed4
commit 9c539fed11
No known key found for this signature in database
GPG Key ID: 5CD422268E489EB4
2 changed files with 9 additions and 0 deletions

6
.gitignore vendored
View File

@ -32,6 +32,12 @@
*.out
*.app
# ---> Cmake
Makefile
CMakeCache.txt
cmake_install.cmake_install
CMakeFiles
# ---> Personal
# Binary
chksum

3
CMakeLists.txt Normal file
View File

@ -0,0 +1,3 @@
cmake_minimum_required(VERSION 3.28)
project(chksum)
add_executable(chksum src/main.cpp src/fs_reader.cpp)