From db4671e20681c8837b2b1bc50136ae29fc7e6fec Mon Sep 17 00:00:00 2001 From: Quinn Date: Sun, 26 Jan 2025 11:52:53 +0100 Subject: [PATCH] fix: did not name the project correctly --- .vscode/launch.json | 2 +- makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 797639f..86d8be9 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -7,7 +7,7 @@ "request": "launch", "program": "", "linux": { - "program": "${workspaceFolder}/bin/linux-x86_64/sdl_template", + "program": "${workspaceFolder}/bin/linux-x86_64/tetris_clone", "preLaunchTask": "build linux-x86_64" }, "windows": { diff --git a/makefile b/makefile index a84ce23..4dad723 100644 --- a/makefile +++ b/makefile @@ -1,4 +1,4 @@ -NAME = sdl_template +NAME := tetris_clone # compiler settings CC := clang