Atur Commandline Variabel CMake

// To set cmake cache variables from command line
cmake -D<VAR_NAME>=<VAR_VALUE>

// Example
cmake -DUSE_CURL=True
Bayemite