我可以在没有 qmake 或 Qt Creator 的情况下使用 Qt

Can I use Qt without qmake or Qt Creator?(我可以在没有 qmake 或 Qt Creator 的情况下使用 Qt 吗?)
本文介绍了我可以在没有 qmake 或 Qt Creator 的情况下使用 Qt 吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用 Qt 编程,但我不想使用特殊的编译器或 IDE,例如 Qt Creator 和 qmake.我想和 Kate 一起写,用 g++ 编译.

I want to program using Qt, but I don't want to use special compilers or IDE such as Qt Creator and qmake. I want to write with Kate and compile with g++.

我可以用g++编译一个使用Qt的程序吗?我如何用 g++ 编译它?

Can I compile a program that uses Qt with g++? How do I compile it with g++?

推荐答案

当然可以.虽然用 qmake 或 CMake 更方便,但你可以这样做:

Sure you can. Although it is more convenient with qmake or CMake, you can do:

CXXFLAGS += -Ipath_to_your_qt_includes
LDFLAGS += -Lpath_to_your_qt_libs

LDLIBS += -lqt-mt (for Qt3)

LDLIBS += -lQtCore -lQtGui (for Qt4, add what you need)

my_prog: my_prog.cpp

(在生成文件中)

更新 - 调用 moc:

引用自 moc 手册页:

这是一个有用的 makefile 规则,如果您只使用 GNU make:

Here is a useful makefile rule if you only use GNU make:

m%.cpp: %.h
        moc $< -o $@

我个人将输出命名为 %.moc.cpp(而不是 m%.cpp).然后将 my_prog 的依赖添加到 my_prog.moc.cpp

I'd personally name the output rather %.moc.cpp (than m%.cpp). You then add the dependency of my_prog on my_prog.moc.cpp

my_prog: my_prog.cpp my_prog.moc.cpp

同样适用于 uic.这里的情况更复杂,因为你必须为头文件生成规则,并且你必须添加对头文件的依赖以确保它在源代码编译之前生成.像这样的事情可能会奏效:

Similarly for uic. The situation here is more complicated, since you have to generate rules for headers and source files, and you have to add a dependency on a header file to ensure it gets generated before the sources are compiled. Something like this might work:

my_prog: my_prog.o my_prog.moc.o my_prog.ui.o
        $(CXX)  $(LDFLAGS) -o my_prog $^ $(LDLIBS)

my_prog.o: my_prog.cpp my_prog.ui.h

这篇关于我可以在没有 qmake 或 Qt Creator 的情况下使用 Qt 吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Rising edge interrupt triggering multiple times on STM32 Nucleo(在STM32 Nucleo上多次触发上升沿中断)
How to use va_list correctly in a sequence of wrapper functions calls?(如何在一系列包装函数调用中正确使用 va_list?)
OpenGL Perspective Projection Clipping Polygon with Vertex Outside Frustum = Wrong texture mapping?(OpenGL透视投影裁剪多边形,顶点在视锥外=错误的纹理映射?)
How does one properly deserialize a byte array back into an object in C++?(如何正确地将字节数组反序列化回 C++ 中的对象?)
What free tiniest flash file system could you advice for embedded system?(您可以为嵌入式系统推荐什么免费的最小闪存文件系统?)
Volatile member variables vs. volatile object?(易失性成员变量与易失性对象?)