1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-16 14:59:54 +00:00

Disable C++ extensions

Since openmw has to be compiled by clang, gcc, msvc most of the extensions
will not work anyway.
This commit is contained in:
elsid 2022-07-04 23:00:26 +02:00
parent cec7f1e7bc
commit 0a94f95c95
No known key found for this signature in database
GPG key ID: 4DE04C198CBA7625

View file

@ -24,6 +24,7 @@ project(OpenMW)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
include(GNUInstallDirs)