From e70941e3c0b5d475e5474d01da9b3ece916e9600 Mon Sep 17 00:00:00 2001 From: Lukian Date: Fri, 8 Nov 2024 10:04:28 +0100 Subject: [PATCH] commit --- CMakeLists.txt | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 48212e2..c27075d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,3 +4,4 @@ file(GLOB_RECURSE MY_SOURCES CONFIGURE_DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/src/ project("game_engine") add_executable("game_engine" "src/main.cpp" "${MY_SOURCES}") + diff --git a/Makefile b/Makefile index a9dc51a..72b0afb 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ build: $(BUILD_DIR)/CMakeCache.txt make -C $(BUILD_DIR) run: build - $(EXECUTABLE) + $(BUILD_DIR)/$(EXECUTABLE) clean: rm -rf $(BUILD_DIR)