findmfc.cmake
来自「InsightToolkit-1.4.0(有大量的优化算法程序)」· CMAKE 代码 · 共 19 行
CMAKE
19 行
#
# 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 )
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?