CompilerTech

导航

2011年8月14日

qmake Manual (EN) 2

摘要: qmake's Advanced Conceptsqmake's Advanced ConceptsThe qmake project files we've seen up to now have been very simple, just a list of name = value and name += value lines. qmake provides a lot more power, for example you can use a single project file to produce makefiles for multiple plat 阅读全文

posted @ 2011-08-14 22:45 compilerTech 阅读(303) 评论(0) 推荐(0) 编辑

qmake Manual (EN) 3

摘要: Using Precompiled HeadersAbout Precompiled HeadersPrecompiled headers are a performance feature supported by some compilers to compile a stable body of code, and store the compiled state of the code in a binary file. During subsequent compilations, the compiler will load the stored state, and contin 阅读全文

posted @ 2011-08-14 22:35 compilerTech 阅读(810) 评论(0) 推荐(0) 编辑

qmake Manual (EN) 1

摘要: Introduction to qmakeqmake is a tool created by Trolltech to write makefiles for different compilers and platforms.Writing makefiles by hand can be difficult and error prone, especially if several makefiles are required for different compiler and platform combinations. With qmake, developers create 阅读全文

posted @ 2011-08-14 22:33 compilerTech 阅读(442) 评论(0) 推荐(0) 编辑

qmake 简介

摘要: 1.简介:qmake是Trolltech公司创建的用来为不同的平台和编译器书写Makefile的工具。是qt工具包的一部分.在Unix&linux上写程式的人大概都碰过Makefile。用 make 来开发和编译程式的确很方便,可是要写出一个 Makefile就不简单了,手写Makefile是比较困难并且容易出错的,这阻挡了很多一部分的linux爱好者加入linux程序开发的阵营。虽然Open Source Software也有GNU Automake和GNU Autoconf两个软件可以生成makefile文件,但是对于一个简单的项目,使用Automake和Autoconf就有点杀鸡 阅读全文

posted @ 2011-08-14 22:28 compilerTech 阅读(750) 评论(0) 推荐(0) 编辑

qmake Manual

摘要: qmake的介绍qmake是Trolltech公司创建的用来为不同的平台和编译器书写Makefile的工具。手写Makefile是比较困难并且容易出错的,尤其是需要给不同的平台和编译器组合写几个Makefile。使用qmake,开发者创建一个简单的“项目”文件并且运行qmake生成适当的Makefile。qmake会注意所有的编译器和平台的依赖性,可以把开发者解放出来只关心他们的代码。Trolltech公司使用qmake作为Qt库和Qt所提供的工具的主要连编工具。qmake也注意了Qt的特殊需求,可以自动的包含moc和uic的连编规则。安装qmake当Qt被连编的时候,默认情况下qmake也会 阅读全文

posted @ 2011-08-14 22:26 compilerTech 阅读(486) 评论(0) 推荐(0) 编辑