0

在 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”的安装前缀有任何想法吗?

4

1 回答 1

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]通过命令提示符将参数传递给 CMAKE

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

于 2015-04-23T12:52:03.463 回答