<div dir="auto">If you don't want to have to keep switching to Windows and back to test, the most reliable way to know with absolute certainty is to install CMake 3.8 on OSX and use that.<div dir="auto"><br></div><div dir="auto">Fortunately building cmake is actually quite easy, you can even use the newer cmake from brew to configure the older one (use cmake to build cmake!).</div><div dir="auto"><br></div><div dir="auto">Make sure you set CMAKE_INSTALL_PREFIX to somewhere you know about (e.g. /opt/cmake-3.8). When you need to test this project, update your path to point there</div><div dir="auto"><br></div><div dir="auto">export PATH="/opt/cmake-3.8/bin:$PATH"</div><div dir="auto"><br></div><div dir="auto">You need to run that export command for every terminal, or put it in your ~/.bashrc while developing this project.</div><div dir="auto"><br></div><div dir="auto">If you don't set CMAKE_INSTAL_PREFIX, `make install` will put it in /usr/local by default which will make it more challenging to uninstall in the future when you want to use cmake 3.11 from brew. Putting it in /opt makes it so you can just delete that entire /opt/cmake-3.8 folder and/or comment out the export command in your ~/.bashrc (making sure to launch a new terminal and verify cmake --version after editing your ~/.bashrc).</div></div>