Skip to content

Instantly share code, notes, and snippets.

@sortofsleepy
Created January 24, 2020 13:57
Show Gist options
  • Save sortofsleepy/e95f74ecd30522b83ba884d2ce62c23c to your computer and use it in GitHub Desktop.
Save sortofsleepy/e95f74ecd30522b83ba884d2ce62c23c to your computer and use it in GitHub Desktop.
add MSVC checks + how to add options in CMake
if(MSVC_VERSION GREATER_EQUAL "1900")
include(CheckCXXCompilerFlag)
add_compile_options("/std:c++latest")
endif()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment