This commit is contained in:
Lukian 2024-11-08 10:04:28 +01:00
parent 457a309aaa
commit e70941e3c0
2 changed files with 2 additions and 1 deletions

View file

@ -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}")

View file

@ -8,7 +8,7 @@ build: $(BUILD_DIR)/CMakeCache.txt
make -C $(BUILD_DIR)
run: build
$(EXECUTABLE)
$(BUILD_DIR)/$(EXECUTABLE)
clean:
rm -rf $(BUILD_DIR)