https://github.com/Kitware/CMake
Revision b2cf4db2010ae0c08cd063b7aa8136fd512d8a97 authored by Brad King on 01 March 2008, 15:56:03 UTC, committed by Brad King on 01 March 2008, 15:56:03 UTC
1 parent e083de1
Raw File
Tip revision: b2cf4db2010ae0c08cd063b7aa8136fd512d8a97 authored by Brad King on 01 March 2008, 15:56:03 UTC
BUG: Fix typo XCode -> Xcode in Preprocess test.
Tip revision: b2cf4db
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