From 5cf05f1419c8277342d68e65d599acc1abd50950 Mon Sep 17 00:00:00 2001 From: Tanishq Dubey Date: Fri, 14 Jun 2024 19:33:45 -0400 Subject: [PATCH] Add platform check --- Makefile | 2 +- lib/backends/tex_inspect_opengl.cpp | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7dbff72..b53f171 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ UNAME_S := $(shell uname -s) LINUX_GL_LIBS = -lGL CXXFLAGS = -std=c++20 -I$(IMGUI_DIR) -I$(IMGUI_DIR)/backends -CXXFLAGS += -DIMGUI_DEFINE_MATH_OPERATORS -Ofast +CXXFLAGS += -DIMGUI_DEFINE_MATH_OPERATORS -O3 -DGL_SILENCE_DEPRECATION LIBS = -lexiv2 ##--------------------------------------------------------------------- diff --git a/lib/backends/tex_inspect_opengl.cpp b/lib/backends/tex_inspect_opengl.cpp index 4ed0a3d..7cfae92 100644 --- a/lib/backends/tex_inspect_opengl.cpp +++ b/lib/backends/tex_inspect_opengl.cpp @@ -77,8 +77,14 @@ using namespace gl; #elif defined(IMGUI_IMPL_OPENGL_LOADER_EPOXY) #include #else +#if defined(__APPLE__) #include #include +#else +#include +#include +#include +#endif #endif #endif