I am trying to use the code here https://github.com/usuaero/MachUp I have followed all the pre requisites required but when I try to build the executable I get this error. Any advice would be helpful. I am not sure what "[-Dndv=]" this is, is it a folder that cmake is looking for a can't find?
PS C:\Program Files\MachUp-master> cmake -G "MinGW Makefiles" [-Dndv=<ndv>]
CMake Error: The source directory "C:/Program Files/MachUp-master/[-Dndv=<ndv>]" does not exist.
Specify --help for usage, or press the help button on the CMake GUI.
PS C:\Program Files\MachUp-master>
Actually their README have incorrect CMake command line. If you are running CMake in the source directory you need to pass
.as a directory to build. The[...]means it is an optional argument you can pass, just remove it.