establecer la línea de comandos de variable cmake
// To set cmake cache variables from command line
cmake -D<VAR_NAME>=<VAR_VALUE>
// Example
cmake -DUSE_CURL=True
Bayemite