STYLE: Nightly Version update
[cmake.git] / Modules / FindMFC.cmake
blobb2974116fd60f64e0bdcc74b8cc099448ae32c25
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       IF( NOT MINGW )
14         SET( MFC_FOUND "YES" )
15       ENDIF( NOT MINGW )
16     ENDIF( NOT BORLAND )
17   ENDIF( NOT CYGWIN )
18 ENDIF( WIN32 )