Is there a way to pass Cygwin paths to Cygwin's CMake instead of windows paths? Or insert cygpath in the -B or -S arguments:
-S$(cygpath -a -u "C:\\Source")
Some Context:
The plugin launches CMake with:
cmake -DCMAKE_BUILD_TYPE:STRING=Debug -G "Unix Makefiles" -DCMAKE_BUILD_TYPE:STRING=RELEASE -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=ON "C:\\Source"
but it should be:
cmake
-DCMAKE_BUILD_TYPE:STRING=Debug -G "Unix Makefiles"
-DCMAKE_BUILD_TYPE:STRING=RELEASE
-DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=ON "/cygdrive/c/Source"