From 5e876921026dece1d79cf4eedea9eb3bd8e541e0 Mon Sep 17 00:00:00 2001 From: Ryan Carsten Schmidt <git@ryandesign.com> Date: Thu, 21 Dec 2023 23:33:58 -0600 Subject: [PATCH] Include TargetConditionals.h where needed Fixes build failure "error: 'TARGET_OS_IPHONE' is not defined, evaluates to 0" on macOS with newer versions of clang. --- Outputs/OpenGL/OpenGL.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Outputs/OpenGL/OpenGL.hpp b/Outputs/OpenGL/OpenGL.hpp index d8e86ef90..af18b144b 100644 --- a/Outputs/OpenGL/OpenGL.hpp +++ b/Outputs/OpenGL/OpenGL.hpp @@ -14,6 +14,7 @@ // TODO: figure out correct include paths for other platforms. #ifdef __APPLE__ + #include <TargetConditionals.h> #if TARGET_OS_IPHONE #else // These remain so that I can, at least for now, build the kiosk version under macOS.