From 37025fbb098c048f607f70a88dcb3a94d531b93f Mon Sep 17 00:00:00 2001 From: ktyl Date: Sun, 6 Aug 2023 15:25:44 +0200 Subject: [PATCH] chore: name main script --- CMakeLists.txt | 2 +- src/{hello.cpp => main.cpp} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{hello.cpp => main.cpp} (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 83ac3d5..f608b46 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ elseif(APPLE) endif() add_executable(${PROJECT_NAME} - src/hello.cpp + src/main.cpp src/io.cpp src/icosphere.cpp src/gfx.cpp diff --git a/src/hello.cpp b/src/main.cpp similarity index 100% rename from src/hello.cpp rename to src/main.cpp