diff --git a/docs/cmake-toml.md b/docs/cmake-toml.md index 86a6b4a..99e1f60 100644 --- a/docs/cmake-toml.md +++ b/docs/cmake-toml.md @@ -44,8 +44,8 @@ You can specify your own conditions and use them in any `condition` field: ```toml [conditions] -arch64 = "CMAKE_SIZEOF_VOID_P EQUALS 8" -arch32 = "CMAKE_SIZEOF_VOID_P EQUALS 4" +arch64 = "CMAKE_SIZEOF_VOID_P EQUAL 8" +arch32 = "CMAKE_SIZEOF_VOID_P EQUAL 4" ``` This will make the `arch64` and `arch32` conditions available with their respective CMake expressions.