findwrapitk.cmake.in
来自「DTMK软件开发包,此为开源软件,是一款很好的医学图像开发资源.」· IN 代码 · 共 19 行
IN
19 行
# CMake module to find the WrapITK project.
# To create external language wrappers, start by including the following
# lines in a CMakeLists.txt:
# FIND_PACKAGE(WrapITK)
# This will automatically include WrapITKConfig.cmake
# and set WrapITK_DIR to the location of the WrapITK tree.
FIND_PATH(WrapITK_DIR WrapITKConfig.cmake
"@CONFIG_WRAP_ITK_DIR@"
DOC "Path to build or install location of WrapITK"
)
IF(WrapITK_DIR)
SET(WrapITK_FOUND 1)
INCLUDE("${WrapITK_DIR}/WrapITKConfig.cmake")
ELSE(WrapITK_DIR)
SET(WrapITK_FOUND 0)
ENDIF(WrapITK_DIR)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?