diff options
| author | raysan5 <[email protected]> | 2019-07-30 14:00:10 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2019-07-30 14:00:10 +0200 |
| commit | 1da7e1da8c8445cd83b95c15df97cc10d8d55d65 (patch) | |
| tree | c7cb4f876dbba64932301853c3b80aa05b0fb031 /projects/VSCode/Makefile | |
| parent | 5775f9d224ced3e9d688c7223ab9a1de54a440eb (diff) | |
| download | raylib-1da7e1da8c8445cd83b95c15df97cc10d8d55d65.tar.gz raylib-1da7e1da8c8445cd83b95c15df97cc10d8d55d65.zip | |
Review VSCode project
Diffstat (limited to 'projects/VSCode/Makefile')
| -rw-r--r-- | projects/VSCode/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/projects/VSCode/Makefile b/projects/VSCode/Makefile index e3c25c76..13a2853b 100644 --- a/projects/VSCode/Makefile +++ b/projects/VSCode/Makefile @@ -29,8 +29,10 @@ RAYLIB_VERSION ?= 2.5.0 RAYLIB_API_VERSION ?= 251 RAYLIB_PATH ?= ..\.. -# Define default options +# Define compiler path on Windows +COMPILER_PATH ?= C:/raylib/mingw/bin +# Define default options # One of PLATFORM_DESKTOP, PLATFORM_RPI, PLATFORM_ANDROID, PLATFORM_WEB PLATFORM ?= PLATFORM_DESKTOP @@ -68,6 +70,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) # ifeq ($(UNAME),Msys) -> Windows ifeq ($(OS),Windows_NT) PLATFORM_OS=WINDOWS + export PATH := $(COMPILER_PATH):$(PATH) else UNAMEOS=$(shell uname) ifeq ($(UNAMEOS),Linux) |
