diff options
Diffstat (limited to 'projects/VSCode/Makefile')
| -rw-r--r-- | projects/VSCode/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/projects/VSCode/Makefile b/projects/VSCode/Makefile index 6653b576..747718fc 100644 --- a/projects/VSCode/Makefile +++ b/projects/VSCode/Makefile @@ -54,6 +54,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) # ifeq ($(UNAME),Msys) -> Windows ifeq ($(OS),Windows_NT) PLATFORM_OS=WINDOWS + export PATH := C:/raylib/mingw32/bin:$(PATH) else UNAMEOS=$(shell uname) ifeq ($(UNAMEOS),Linux) @@ -291,7 +292,8 @@ OBJ_DIR = obj # Define all object files from source files SRC = $(call rwildcard, *.c, *.h) -OBJS = $(SRC:$(SRC_DIR)/%.c=$(OBJ_DIR)/%.o) +#OBJS = $(SRC:$(SRC_DIR)/%.c=$(OBJ_DIR)/%.o) +OBJS = main.c # For Android platform we call a custom Makefile.Android ifeq ($(PLATFORM),PLATFORM_ANDROID) |
