So let's say that now I have this in CMakeLists.txt:
set(VAR1 1) Is it possile to pass a value from the command line instead of putting "1" directly to the CMakeLists.txt? By passing some addition parameters while calling cmake in cmd, for example?
Thanks.
cmake -D VAR1=1 ...