摘要:
CMake 学习笔记 04 常用变量和指令 ===================================== 源代码见 https://github.com/fengyc/cmake tutorial 常用变量 cmake 中支持变量来控制构建过程。一个变量可通过 取得其值,在 IF 语句 阅读全文
摘要:
CMake 学习笔记 03 构建静态和动态库 ===================================== 源代码见 https://github.com/fengyc/cmake tutorial 组织为静态和动态库 通常的项目都会划分模块,模块以库的形式进行链接(动态或静态),在 阅读全文
摘要:
CMake 学习笔记 02 更复杂的项目 =============================== 源代码见 https://github.com/fengyc/cmake tutorial 源代码目录组织 一般的项目,会划分为多个子目录,每个子目录中包含不同的模块,并定义好模块间的依赖关系。 阅读全文
摘要:
CMake 学习笔记 01 CMake 简介 ======================================= 源代码见 https://github.com/fengyc/cmake tutorial CMake 是一个跨平台的 makefile 工具,帮助开发者组织 c/c++ 项 阅读全文