You can build MS NMake files to be compiled from command line. Though it isn't as straight forward since you need the msvc shell variables setup for your command line (eg by calling your installs vcvarsall.bat). For that you would need to pass -G "NMake Makefiles" to CMake.
You can also run CMake from the command line without input by just not supplying -i thereby forgoing interactive mode and it will complete automatically or fail with an error.
|