我正在尝试按照过去项目中的一些旧指令来编译和安装Maya插件,并且我在Mac上遇到了错误。该指令在终端中使用命令cmake -G "Unix Makefiles" "/CMakeLists.txt path"
找到源文件没有错误,但我收到错误:/ CMakeLists.txt:17: 解析错误。预期命令名称,带有文本“// Path”的不带引号的参数。 - 配置不完整,发生错误!
这是CMakeList.txt的第一部分:
# This is the CMakeCache file.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUI's for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.
########################
# EXTERNAL cache entries
########################
//Path to a program.
CMAKE_AR:FILEPATH=/usr/bin/X11/ar
//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or
// CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel.
CMAKE_BUILD_TYPE:STRING
如果删除第17行(//程序路径),则错误只会移到下一行,依此类推。我试过寻找答案,但我没有运气。任何人都知道如何解决这个问题?