summaryrefslogtreecommitdiffstats
path: root/Modules/FindMFC.cmake
blob: 23d71d6e28db427078f7d5758e1f9eb501c814f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# Find the native MFC - i.e. decide if this is an MS VC box.
#
# MFC_FOUND       - Do not attempt to use MFC if "no" or undefined.
# 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 )
      SET( MFC_FOUND "YES" )
    ENDIF( NOT BORLAND )
  ENDIF( NOT CYGWIN )
ENDIF( WIN32 )