When I try it I get this error message:
CMake Error at CMake/Dependencies.cmake:113 (file):
file DOWNLOAD HASH mismatch
Code: Select all
for file: [C:/Users/rwn00/Desktop/ogre-1.12.12/ogre-1.12.12/build/zlib-1.2.11.tar.gz]
expected hash: [1c9f62f0778697a09d36121ead88e08e]
actual hash: [d41d8cd98f00b204e9800998ecf8427e]
status: [22;"HTTP response code said error"]
Call Stack (most recent call first):
CMakeLists.txt:290 (include)
So I guess the only issue is with zlib?
To fix it, open the "CMake/Dependencies.cmake" file in notepad.
There you will see that the "https://zlib.net/zlib-1.2.11.tar.gz" file does not exist anymore on their server, and that is why the error happens.
Simply replace that with "https://zlib.net/zlib-1.3.1.tar.gz" and then also replace its hash with the new MD5 hash (which is "9855b6d802d7fe5b7bd5b196a2271655" for that file).
Also, search and replace "zlib-1.2.11" with "zlib-1.3.1" in that file.
Save and then attempt CMake again and it should work, and you can also follow my guide here after the above steps: viewtopic.php?p=554037#p554037