其他分享
首页 > 其他分享> > CGOLD

CGOLD

作者:互联网

1.Overview

1.1 What CMake can do

CMake是一个meta构建系统。

1.1.1 Cross-platform development

image

它们的常用工具:
Visual Studio/msbuild
XCode/xcodebuild
Makefile/make

1.1.2 VCS friendly

版本控制软件友好的。

1.1.3 Experimenting

如果你想和Makefile工作,以及想使用Ninja,可以使用
cmake -G 'Unix Makefiles'或者cmake -G Ninja

1.1.4 Family of tools

CMake是一个工具的家族,可以帮助你在所有sources for developers->quality control->installers for users的阶段。
image

1.2 What can't be done with CMake

标签:What,cmake,1.1,CGOLD,Makefile,Ninja,CMake
来源: https://www.cnblogs.com/AcParty/p/16485945.html