I'm trying to use CMake v3.7's ExternalProject to clone the GSL git repo, but it's failing with the error "Failed to unstash changes". Does anyone know what's happening? Am I doing something wrong? Is CMake or GSL doing something wrong?
ExternalProject_Add(
gsl
GIT_REPOSITORY https://github.com/Microsoft/GSL.git
CONFIGURE_COMMAND "" BUILD_COMMAND "" INSTALL_COMMAND ""
)