Add CMake option for enabling C++0x mode. Might need tweaking to work in Windows.

This commit is contained in:
Matt Williams 2009-09-02 13:19:34 +00:00
parent 094d279f74
commit 1664a86a7b

View File

@ -7,6 +7,16 @@ SET(POLYVOX_VERSION_MINOR "1")
SET(POLYVOX_VERSION_PATCH "0")
SET(POLYVOX_VERSION "${POLYVOX_VERSION_MAJOR}.${POLYVOX_VERSION_MINOR}.${POLYVOX_VERSION_PATCH}")
OPTION(ENABLE_CPP0X "Does the compiler support C++0x" OFF) #Enable with -DENABLE_CPP0X=ON or in the GUI
IF(ENABLE_CPP0X)
MESSAGE(STATUS "Compiling in C++0x mode")
IF(CMAKE_COMPILER_IS_GNUCXX) #Maybe "OR MINGW"
ADD_DEFINITIONS(-DC_PLUS_PLUS_ZERO_X_SUPPORTED -std=c++0x) #Will only work on GCC
ELSEIF(MSYS)
#ADD_DEFINITIONS(-DC_PLUS_PLUS_ZERO_X_SUPPORTED)
ENDIF()
ENDIF()
ADD_SUBDIRECTORY(library)
ADD_SUBDIRECTORY(examples/OpenGL)