File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.10)
2- project (game- test VERSION 1.0.0)
2+ project (Meowstro VERSION 1.0.0)
33
44# Set C++ Standard
55set (CMAKE_CXX_STANDARD 17)
@@ -49,7 +49,7 @@ endif()
4949
5050# Define Source Files
5151set (SOURCES
52- src/game .cpp
52+ src/meowstro .cpp
5353 src/RenderWindow.cpp
5454 src/Entity.cpp
5555)
@@ -66,7 +66,7 @@ if (NOT SOURCES)
6666endif ()
6767
6868# Create the Executable
69- set (BIN_NAME game )
69+ set (BIN_NAME meowstro )
7070if (DEFINED ENV{GITHUB_ACTIONS})
7171 add_definitions (-DCI_BUILD)
7272endif ()
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ You have two common ways to build and run the project: **Visual Studio** or the
8888#### 🔷 Method 1: Using Visual Studio
8989
90901 . Open the ` .sln ` file located inside the ` build/ ` directory.
91- 2 . In the ** Solution Explorer** , right-click on the project named ` game ` and select ** "Set as Startup Project"** .
91+ 2 . In the ** Solution Explorer** , right-click on the project named ` meowstro ` and select ** "Set as Startup Project"** .
92923 . Press ` Ctrl + F5 ` or click ** Debug → Start Without Debugging** to run the project.
9393
9494✅ That’s it! Visual Studio will automatically build and run the project.
@@ -111,7 +111,7 @@ cmake --build .
111111
112112#### Run the Built Executable
113113``` sh
114- ./bin/Debug/game .exe
114+ ./bin/Debug/meowstro .exe
115115```
116116
117117## Directory Structure
File renamed without changes.
You can’t perform that action at this time.
0 commit comments