rename binary

This commit is contained in:
ktyl 2023-02-14 23:19:52 +00:00
parent c39a2cea91
commit ebbd20a5d1
2 changed files with 4 additions and 4 deletions

2
.gitignore vendored
View File

@ -2,7 +2,7 @@
image.ppm image.ppm
# binary # binary
flark snoopy
# CMake # CMake
# https://github.com/github/gitignore/blob/master/CMake.gitignore # https://github.com/github/gitignore/blob/master/CMake.gitignore

View File

@ -1,11 +1,11 @@
cmake_minimum_required(VERSION 3.10) cmake_minimum_required(VERSION 3.10)
project(flark) project(snoopy)
file(GLOB flark_src file(GLOB snoopy_src
"src/*.h" "src/*.h"
"src/*.cpp" "src/*.cpp"
) )
add_executable(flark ${flark_src}) add_executable(snoopy ${snoopy_src})