問題描述
我想使用 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
(在生成文件中)
更新 - 調(diào)用 moc
:
引用自 moc 手冊頁:
這是一個有用的 makefile 規(guī)則,如果您只使用 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.這里的情況更復雜,因為你必須為頭文件和生成規(guī)則,并且你必須添加對頭文件的依賴以確保它在源代碼編譯之前生成.像這樣的事情可能會奏效:
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 嗎?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!