Update the project name

This commit is contained in:
ItsDrike 2025-03-18 14:29:24 +01:00
parent 8949830a1b
commit 77bb46e7fd
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
2 changed files with 3 additions and 2 deletions

View file

@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.16)
set(PROJECT_NAME sprites)
set(PROJECT_NAME jumpingBall)
project(${PROJECT_NAME} VERSION 0.1 LANGUAGES CXX)
set(CMAKE_AUTOUIC ON)
@ -36,6 +36,7 @@ else()
add_executable(${PROJECT_NAME}
${PROJECT_SOURCES}
src/ball.h src/ball.cpp
src/platform.h src/platform.cpp
)
endif()
endif()

View file

@ -2,7 +2,7 @@
set -euo pipefail
BUILD_DIR="build/Desktop-Debug"
BIN_NAME="sprites"
BIN_NAME="jumpingBall"
if [ -d "$BUILD_DIR" ]; then
echo "Cleaning the build directory..."