linux怎么查看cmake预编译进度
在Linux上查看CMake预编译进度,可以使用以下命令:
cmake --build <build directory> --target <target name> -- -v
其中,<build directory>
是你的构建目录的路径,<target name>
是你想要查看进度的目标名称。通过添加-v
参数,可以输出更详细的构建信息,包括预编译进度。
阅读剩余
THE END
在Linux上查看CMake预编译进度,可以使用以下命令:
cmake --build <build directory> --target <target name> -- -v
其中,<build directory>
是你的构建目录的路径,<target name>
是你想要查看进度的目标名称。通过添加-v
参数,可以输出更详细的构建信息,包括预编译进度。