diff --git a/CMakeLists.txt b/CMakeLists.txt index 1901005..b3d4aab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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() diff --git a/build.sh b/build.sh index 96da855..53fde18 100755 --- a/build.sh +++ b/build.sh @@ -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..."