Qt Creator 是否支持增量构建?
Does Qt Creator support incremental build?
我目前的工作是将Netbeans中的一个项目移植到Qt Creator中,并且
NetBeans IDE supports automatic checking of file dependencies and does its best to make incremental rebuild work correctly
在 https://netbeans.org/kb/docs/cnd/depchecking.html。我的问题是天气 Qt Creator 有这些能力或需要一些插件。
'includes' 依赖性检查是每个编译器工具链的默认行为。是mingw做的,或者visual,....
所以这是 QtCretor 的默认行为。这不是一个选择。
如果你想重建所有,你必须明确地询问它。
我目前的工作是将Netbeans中的一个项目移植到Qt Creator中,并且
NetBeans IDE supports automatic checking of file dependencies and does its best to make incremental rebuild work correctly
在 https://netbeans.org/kb/docs/cnd/depchecking.html。我的问题是天气 Qt Creator 有这些能力或需要一些插件。
'includes' 依赖性检查是每个编译器工具链的默认行为。是mingw做的,或者visual,.... 所以这是 QtCretor 的默认行为。这不是一个选择。 如果你想重建所有,你必须明确地询问它。