The CMake option command allows users to define variable from command line:
option(<option_variable> "help string describing option"
     [initial value])
I am wondering how to view all such available options.  I.e. I am looking for something like ./configure -h where it typically shows a summary all possible configuration a user can tweak.
