now supports cmake
added a CMakeLists.txt and updated the .gitignore
This commit is contained in:
parent
1f3f03fed4
commit
9c539fed11
6
.gitignore
vendored
6
.gitignore
vendored
@ -32,6 +32,12 @@
|
||||
*.out
|
||||
*.app
|
||||
|
||||
# ---> Cmake
|
||||
Makefile
|
||||
CMakeCache.txt
|
||||
cmake_install.cmake_install
|
||||
CMakeFiles
|
||||
|
||||
# ---> Personal
|
||||
# Binary
|
||||
chksum
|
||||
|
3
CMakeLists.txt
Normal file
3
CMakeLists.txt
Normal file
@ -0,0 +1,3 @@
|
||||
cmake_minimum_required(VERSION 3.28)
|
||||
project(chksum)
|
||||
add_executable(chksum src/main.cpp src/fs_reader.cpp)
|
Loading…
Reference in New Issue
Block a user