Update the project name
This commit is contained in:
parent
8949830a1b
commit
77bb46e7fd
2 changed files with 3 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
cmake_minimum_required(VERSION 3.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
set(PROJECT_NAME sprites)
|
set(PROJECT_NAME jumpingBall)
|
||||||
project(${PROJECT_NAME} VERSION 0.1 LANGUAGES CXX)
|
project(${PROJECT_NAME} VERSION 0.1 LANGUAGES CXX)
|
||||||
|
|
||||||
set(CMAKE_AUTOUIC ON)
|
set(CMAKE_AUTOUIC ON)
|
||||||
|
@ -36,6 +36,7 @@ else()
|
||||||
add_executable(${PROJECT_NAME}
|
add_executable(${PROJECT_NAME}
|
||||||
${PROJECT_SOURCES}
|
${PROJECT_SOURCES}
|
||||||
src/ball.h src/ball.cpp
|
src/ball.h src/ball.cpp
|
||||||
|
src/platform.h src/platform.cpp
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
2
build.sh
2
build.sh
|
@ -2,7 +2,7 @@
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
BUILD_DIR="build/Desktop-Debug"
|
BUILD_DIR="build/Desktop-Debug"
|
||||||
BIN_NAME="sprites"
|
BIN_NAME="jumpingBall"
|
||||||
|
|
||||||
if [ -d "$BUILD_DIR" ]; then
|
if [ -d "$BUILD_DIR" ]; then
|
||||||
echo "Cleaning the build directory..."
|
echo "Cleaning the build directory..."
|
||||||
|
|
Loading…
Add table
Reference in a new issue