From f914020d45f6e44b2de4e6ba6af8e5b60fe42731 Mon Sep 17 00:00:00 2001 From: Tim Romero Date: Sat, 23 Dec 2023 02:22:16 -0800 Subject: [PATCH] VSCode sample project Mac fixup (#3666) Change vscode config and makefile to add a missing IOKit framework reference and use whichever MacOSX sdk symlink is available --- projects/VSCode/.vscode/c_cpp_properties.json | 2 +- projects/VSCode/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/VSCode/.vscode/c_cpp_properties.json b/projects/VSCode/.vscode/c_cpp_properties.json index cbdb51941..dd0a2932e 100644 --- a/projects/VSCode/.vscode/c_cpp_properties.json +++ b/projects/VSCode/.vscode/c_cpp_properties.json @@ -32,7 +32,7 @@ "PLATFORM_DESKTOP" ], "macFrameworkPath": [ - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks" + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks" ], "compilerPath": "/usr/bin/clang", "cStandard": "c11", diff --git a/projects/VSCode/Makefile b/projects/VSCode/Makefile index a2a26f092..25e00c0b4 100644 --- a/projects/VSCode/Makefile +++ b/projects/VSCode/Makefile @@ -319,7 +319,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 OpenAL -framework Cocoa -framework IOKit endif ifeq ($(PLATFORM_OS),BSD) # Libraries for FreeBSD, OpenBSD, NetBSD, DragonFly desktop compiling