How can I perform a case-insensitive string comparison? I basically need to do this:<div><br></div><div>set( file &quot;Makefile&quot; )</div><div>if( file STREQUAL &quot;makefile&quot; )</div><div>   ....</div><div>endif()</div>
<div><br></div><div>The above condition should PASS, since I want to ignore case, but as of right now it seems STREQUAL is case-sensitive. I need to do this without mutating either operand (i.e. i can&#39;t use string( TOLOWER ) )</div>