I run CMake under Windows to download a zipfile with source code and unzip it.
After the unzip I want to execute patches over the directory with unzipped source code. I am taking the zipfile with source code from the Linux end of my project. Under Linux gnu patch is installed, which is used to perform the directory patch. Under Windows gnu patch is not installed and I like to keep it that way.
I am not able to figure out how to execute the patches over the directory using CMake. Is it possible to provide some explanation with an example?
Thank you.