findmfc.cmake
来自「编译器」· CMAKE 代码 · 共 20 行
CMAKE
20 行
# - 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 )
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?