Merge pull request #4227 from ligfx/clean_objc

Don't force compile everything as Objective-C++ on macOS
This commit is contained in:
shuffle2
2016-10-02 19:42:04 -07:00
committed by GitHub
13 changed files with 89 additions and 133 deletions

View File

@ -4,8 +4,11 @@
#pragma once
#ifdef __APPLE__
#if defined(__APPLE__) && defined(__OBJC__)
#import <AppKit/AppKit.h>
#else
struct NSOpenGLContext;
struct NSView;
#endif
#include "Common/GL/GLInterfaceBase.h"