1
0

FindMFC.cmake 487 B

12345678910111213141516171819
  1. # - Find MFC on Windows
  2. # Find the native MFC - i.e. decide if this is an MS VC box.
  3. # MFC_FOUND - Was MFC support found
  4. # You don't need to include anything or link anything to use it.
  5. # Assume no MFC support
  6. SET( MFC_FOUND "NO" )
  7. # Add MFC support if win32 and not cygwin and not borland
  8. IF( WIN32 )
  9. IF( NOT CYGWIN )
  10. IF( NOT BORLAND )
  11. IF( NOT MINGW )
  12. SET( MFC_FOUND "YES" )
  13. ENDIF( NOT MINGW )
  14. ENDIF( NOT BORLAND )
  15. ENDIF( NOT CYGWIN )
  16. ENDIF( WIN32 )