mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 16:05:07 +01:00
Support for C++11 on OSX
This commit is contained in:
parent
704075f04a
commit
7817d6c79a
@ -21,9 +21,8 @@ pkg_search_module(GLFW REQUIRED glfw3)
|
||||
|
||||
IF (APPLE)
|
||||
FIND_LIBRARY(COREFOUNDATION_LIBRARY CoreFoundation)
|
||||
SET(CMAKE_CXX_FLAGS "-stdlib=libc++")
|
||||
SET(CMAKE_CXX_FLAGS_DEBUG "-stdlib=libc++")
|
||||
SET(CMAKE_CXX_FLAGS_RELEASE "-stdlib=libc++")
|
||||
SET(CMAKE_CXX_FLAGS "-stdlib=libc++")
|
||||
SET(CMAKE_EXE_LINKER_FLAGS "-stdlib=libc++")
|
||||
ENDIF (APPLE)
|
||||
|
||||
#external includes
|
||||
|
@ -25,7 +25,7 @@
|
||||
#define HAVE_CXX11_SYNTAX 1
|
||||
#endif
|
||||
|
||||
//#if HAVE_CXX11_SYNTAX
|
||||
#if HAVE_CXX11_SYNTAX
|
||||
// An inheritable class to disallow the copy constructor and operator= functions
|
||||
class NonCopyable
|
||||
{
|
||||
@ -37,7 +37,7 @@ private:
|
||||
NonCopyable(NonCopyable&);
|
||||
NonCopyable& operator=(NonCopyable& other);
|
||||
};
|
||||
//#endif
|
||||
#endif
|
||||
|
||||
#include "common/log.h"
|
||||
#include "common/common_types.h"
|
||||
|
Loading…
Reference in New Issue
Block a user