Add platform check
This commit is contained in:
parent
6cafeb0834
commit
5cf05f1419
2
Makefile
2
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
|
||||
|
||||
##---------------------------------------------------------------------
|
||||
|
@ -77,8 +77,14 @@ using namespace gl;
|
||||
#elif defined(IMGUI_IMPL_OPENGL_LOADER_EPOXY)
|
||||
#include <epoxy/gl.h>
|
||||
#else
|
||||
#if defined(__APPLE__)
|
||||
#include <OpenGL/gl.h>
|
||||
#include <OpenGL/gl3.h>
|
||||
#else
|
||||
#include <SDL2/SDL_opengl.h>
|
||||
#include <SDL2/SDL_opengles2.h>
|
||||
#include <SDL2/SDL_opengles2_gl2.h>
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user