build

Faster build optimization for large CMake based project

本文有 10164 字,大约需要 25 分钟可以读完, 创建于 2016-03-03

Building time is always a big concern for large scale C/C++ based software projects, there’ve been a lot of outstanding tools invented to relief the pain, CM...

CMake的一些小经验

本文有 6974 字,大约需要 17 分钟可以读完, 创建于 2009-12-14

初用CMake或者对其了解不太深的人,可能经常会被路径包含、库搜索路径、链接路径、RPath这些问题所绊倒,因为这些东西在手工执行gcc或者编写makefile的时候是很轻而易举的任务,但是由于CMake做了一些抽象,没有一些基本概念之前,大部分人可能会感觉有不少疑惑。其实我当初也有不少问号并像尽力往GNU Ma...