Usage cmake [options] <path-to-source> cmake [options] <path-to-existing-build> cmake [options] -S <path-to-source> -B <path-to-build> Specify a source directory to (re-)generate a build system for it in the current working directory. Specify an existing build directory to re-generate its build system. Run 'cmake --help' for more information.
时间: 2024-03-11 17:47:01 浏览: 246
android.ndk.oculus-quest-example:在Oculus Quest上将NDK与CMake结合使用的Android示例
这是CMake的使用说明,它包含三种使用方法:
1. 指定源代码路径生成构建系统:
```
cmake [options] <path-to-source>
```
在当前工作目录下生成一个构建系统,用于构建指定路径下的源代码。
2. 指定已有的构建目录重新生成构建系统:
```
cmake [options] <path-to-existing-build>
```
重新生成指定路径下的构建系统。
3. 指定源代码路径和构建目录生成构建系统:
```
cmake [options] -S <path-to-source> -B <path-to-build>
```
在指定的构建目录下生成一个构建系统,用于构建指定路径下的源代码。
其中,`[options]`是可选的CMake选项,用于指定生成构建系统的相关参数。例如,可以使用`-DCMAKE_BUILD_TYPE`选项指定编译类型。
更多使用方法和选项,请参考`cmake --help`命令。
阅读全文