googlestadia / PorQue4K

Los arcoiris son mejores en 4K. #BlackLivesMatter
Apache License 2.0
20 stars 7 forks source link

Fix CMake CXX_FLAGS usage #9

Open robbiesri opened 4 years ago

robbiesri commented 4 years ago

Right now we are using

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14")

To make sure the GGP VS generator works correctly.

But it should be

set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_EXTENSIONS OFF)

Details here: chaoticbob/CMake#1