Open robbiesri opened 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
Right now we are using
To make sure the GGP VS generator works correctly.
But it should be
Details here: chaoticbob/CMake#1