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

时间:2015-04-23 08:22:35

标签: build cmake 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"的安装前缀?

1 个答案:

答案 0 :(得分:0)

向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] Passing the argument to CMAKE via command prompt

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