FindMFC.cmake 449 B

123456789101112131415161718
  1. #
  2. # Find the native MFC - i.e. decide if this is an MS VC box.
  3. #
  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.
  6. # Assume no MFC support
  7. SET( MFC_FOUND "NO" )
  8. # Add MFC support if win32 and not cygwin and not borland
  9. IF( WIN32 )
  10. IF( NOT CYGWIN )
  11. IF( NOT BORLAND )
  12. SET( MFC_FOUND "YES" )
  13. ENDIF( NOT BORLAND )
  14. ENDIF( NOT CYGWIN )
  15. ENDIF( WIN32 )