Disable extensions and force standard

This commit is contained in:
peter 2018-10-24 12:17:06 +08:00
parent f6dadcf1f1
commit 478a518590
No known key found for this signature in database
GPG Key ID: BB362E868E2CD2B9

View File

@ -4,6 +4,8 @@ if (CMAKE_VERSION VERSION_LESS "3.1")
add_definitions(-std=c++11)
else()
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
endif()
if (POLICY CMP0048)