Merge pull request #41 from murmur-wheel/murmur-wheel-patch-1

fix a typo.
This commit is contained in:
Thom Troy
2020-02-27 16:17:07 +00:00
committed by GitHub

View File

@@ -34,7 +34,7 @@ include(CheckCXXCompilerFlag)
CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
----
This example will attempt to compile a program with the flag `=std=c++11` and store the result in the variable `COMPILER_SUPPORTS_CXX11`.
This example will attempt to compile a program with the flag `-std=c++11` and store the result in the variable `COMPILER_SUPPORTS_CXX11`.
The line `include(CheckCXXCompilerFlag)` tells CMake to include this function to make it available for use.