如何添加 "MITK" 的安装前缀



在Windows 7 x64,VisualStudio 2010中,我需要知道如何设置Cmake路径。

有一条错误消息说

Add the installation prefix of "MITK" to CMAKE_PREFIX_PATH or set "MITK_DIR" to a directory containing one of the above files.

您对如何添加"MITK"的安装前缀有任何想法吗?

将某些内容附加到CMAKE_PREFIX_PATH 您可以使用类似以下内容 ([1]):

list(APPEND CMAKE_PREFIX_PATH "C:/some-path/")

在调用 CMake 时,也可以从控制台设置一些变量。例如像这样 ([2]):

cmake -DMITK_DIR:STRING="C:/some-path" .. 

或直接在CMakeLists中.txt([3]):

set(MITK_DIR "C:/some-path")

[1] http://www.cmake.org/cmake/help/v3.0/command/list.html

[2] 通过命令提示符将参数传递给 CMAKE

[3] http://www.cmake.org/cmake/help/v3.0/command/set.html

相关内容

  • 没有找到相关文章