https://github.com/Kitware/CMake
Raw File
Tip revision: 86d7c4d786e7c6a13a1c4fa61428d53068017d62 authored by Bill Hoffman on 12 January 2007, 14:53:54 UTC
ENH: break it again
Tip revision: 86d7c4d
FindMFC.cmake
# - Find MFC on Windows
# Find the native MFC - i.e. decide if this is an MS VC box.
#  MFC_FOUND - Was MFC support found
# You don't need to include anything or link anything to use it.

# Assume no MFC support
SET( MFC_FOUND "NO" )
# Add MFC support if win32 and not cygwin and not borland
IF( WIN32 )
  IF( NOT CYGWIN )
    IF( NOT BORLAND )
      IF( NOT MINGW )
        SET( MFC_FOUND "YES" )
      ENDIF( NOT MINGW )
    ENDIF( NOT BORLAND )
  ENDIF( NOT CYGWIN )
ENDIF( WIN32 )


back to top