Assume C++11 support

Remove all CMake checks for C++11 support since we now assume that we have it.
Replace all polyvox_* macros with standard C++ names.

See #48
This commit is contained in:
Matt Williams
2014-02-14 14:59:53 +00:00
parent 74be82e8cf
commit bc17c802bb
40 changed files with 36 additions and 604 deletions

View File

@ -69,10 +69,6 @@ if(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
ADD_DEFINITIONS(-std=c++0x) #Enable C++0x mode
endif()
if(NOT MSVC) #This is causing problems in Visual Studio so disable it for now
INCLUDE(cmake/Modules/CheckCXX11Features.cmake)
endif()
ADD_SUBDIRECTORY(library)
OPTION(ENABLE_EXAMPLES "Should the examples be built" ON)