diff options
| author | Murray Campbell <[email protected]> | 2018-08-30 09:33:41 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-08-30 09:33:41 -0500 |
| commit | 166fdbe9c04c6648d3417d6387765587c7b70e4f (patch) | |
| tree | e6dbb5b591bf5e5454b29eb02d1975cb6dec78fc /projects | |
| parent | adf08c88ea4b065a36bf76143a6b42cfce1601de (diff) | |
| download | raylib-166fdbe9c04c6648d3417d6387765587c7b70e4f.tar.gz raylib-166fdbe9c04c6648d3417d6387765587c7b70e4f.zip | |
Fixed included libs for OSX
This was causing linker errors on OSX
Diffstat (limited to 'projects')
| -rw-r--r-- | projects/VSCode/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/VSCode/Makefile b/projects/VSCode/Makefile index 2f78971b..6397fb29 100644 --- a/projects/VSCode/Makefile +++ b/projects/VSCode/Makefile @@ -254,7 +254,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) ifeq ($(PLATFORM_OS),OSX) # Libraries for OSX 10.9 desktop compiling # NOTE: Required packages: libopenal-dev libegl1-mesa-dev - LDLIBS = -lraylib -framework OpenGL -framework OpenAL -framework Cocoa + LDLIBS = -lraylib -framework OpenGL -framework Cocoa -framework IOKit -framework CoreFoundation -framework CoreVideo endif ifeq ($(PLATFORM_OS),BSD) # Libraries for FreeBSD, OpenBSD, NetBSD, DragonFly desktop compiling |
