ENH: mark some vars as advanced (and resort the list)
[cmake.git] / Modules / FindMFC.cmake
blobe453ef0ccb44d0d297276c112828c5a3695ebebd
2 # Find the native MFC - i.e. decide if this is an MS VC box.
4 # MFC_FOUND       - Do not attempt to use MFC if "no" or undefined.
5 # You don't need to include anything or link anything to use it.
7 # Assume no MFC support
8 SET( MFC_FOUND "NO" )
9 # Add MFC support if win32 and not cygwin and not borland
10 IF( WIN32 )
11   IF( NOT CYGWIN )
12      IF( NOT BORLAND )
13        SET( MFC_FOUND "YES" )
14      ENDIF( NOT BORLAND )
15   ENDIF( NOT CYGWIN )
16 ENDIF( WIN32 )