diff options
| author | Stefan E. Mayer <[email protected]> | 2020-04-13 10:51:40 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-04-13 11:51:40 +0200 |
| commit | c21e9a721b5d417396e117c8e074db4767e32758 (patch) | |
| tree | 6b907e693b10efb51b118804c260f675e1f1b937 /projects/VSCode/Makefile | |
| parent | b4af1b2cc0b1e07134765b9e163d83264b63a13f (diff) | |
| download | raylib-c21e9a721b5d417396e117c8e074db4767e32758.tar.gz raylib-c21e9a721b5d417396e117c8e074db4767e32758.zip | |
Fix VSCode (#1193)
* Executable is called game, not main
* Use make not mingw32-make on macOS
Diffstat (limited to 'projects/VSCode/Makefile')
| -rw-r--r-- | projects/VSCode/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/projects/VSCode/Makefile b/projects/VSCode/Makefile index 64d07f1d..b8c22ce3 100644 --- a/projects/VSCode/Makefile +++ b/projects/VSCode/Makefile @@ -180,6 +180,9 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) ifeq ($(PLATFORM_OS),LINUX) MAKE = make endif + ifeq ($(PLATFORM_OS),OSX) + MAKE = make + endif endif # Define compiler flags: |
