dumb question from a dumb person.
when working with cmake i often use the following cmake command, cmake -L
to print a list of “variables” / “args” i can pass to my cmake based project. so i do a google for CMAKE_OSX_ARCHITECTURES
or even better i pop open the official cmake documentation and do a search for CMAKE_OSX_ARCHITECTURES
which gives me the below page,
https://cmake.org/cmake/help/latest/variable/CMAKE_OSX_ARCHITECTURES.html
so for somebody completely new cmake who god forbid attempts to read the “official” documentation for cmake to troubleshoot working on a cmake based project and they want to find out more information about a cmake var / arg, how does that above page help.
it provides a link to another page that doesn’t provide much if any information that helps with the above said arg / var. i’d figure at the very least in the documentation there would be some values that var / arg could possible be. or even provide a command to show me what those values could be.
the documentation feels rather utterly incomplete.
maybe i’m missing something here