From ebbd20a5d16ef570c7454398c28eda997b534d88 Mon Sep 17 00:00:00 2001 From: ktyl Date: Tue, 14 Feb 2023 23:19:52 +0000 Subject: [PATCH] rename binary --- .gitignore | 2 +- CMakeLists.txt | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 58797bc..a871508 100755 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,7 @@ image.ppm # binary -flark +snoopy # CMake # https://github.com/github/gitignore/blob/master/CMake.gitignore diff --git a/CMakeLists.txt b/CMakeLists.txt index 43adef0..8a58964 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,11 +1,11 @@ cmake_minimum_required(VERSION 3.10) -project(flark) +project(snoopy) -file(GLOB flark_src +file(GLOB snoopy_src "src/*.h" "src/*.cpp" ) -add_executable(flark ${flark_src}) +add_executable(snoopy ${snoopy_src})