5

我用 c++ cdt 下载 qt 和 eclipse ,我看到 qt 附带 qt ide (qt creator) 来开发 qt 应用程序,这很好,但我想用 eclipse 来做这个,我的意思是在 eclipse 中使用带有 qt 的 c++ 代码。有没有 ?因为我试图使用 qt 来设计我的用户界面,并使用其他库中的其他代码来做其他事情。

我尝试包含头文件(usr/include/qt4),但是当我编译像我们这样的程序(找不到qgui.h)时我仍然遇到问题,任何帮助将qt与像netbeans这样的eclipse集成。

编辑 :

这是我的输出

13:48:48 **** Incremental Build of configuration Debug for project test ****
Info: Internal Builder is used for build
g++ -o test src/test.o -lQtCore 
src/test.o: In function `main':
/media/sda2/workspaceeclipse/test/Debug/../src/test.cpp:6: undefined reference to `QApplication::QApplication(int&, char**, int)'
/media/sda2/workspaceeclipse/test/Debug/../src/test.cpp:8: undefined reference to `QPushButton::QPushButton(QString const&, QWidget*)'
/media/sda2/workspaceeclipse/test/Debug/../src/test.cpp:12: undefined reference to `QApplication::exec()'
/media/sda2/workspaceeclipse/test/Debug/../src/test.cpp:12: undefined reference to `QPushButton::~QPushButton()'
/media/sda2/workspaceeclipse/test/Debug/../src/test.cpp:12: undefined reference to `QApplication::~QApplication()'
/media/sda2/workspaceeclipse/test/Debug/../src/test.cpp:8: undefined reference to `QPushButton::~QPushButton()'
/media/sda2/workspaceeclipse/test/Debug/../src/test.cpp:12: undefined reference to `QPushButton::~QPushButton()'
/media/sda2/workspaceeclipse/test/Debug/../src/test.cpp:12: undefined reference to `QApplication::~QApplication()'
src/test.o: In function `QWidget::resize(int, int)':
/usr/include/qt4/QtGui/qwidget.h:996: undefined reference to `QWidget::resize(QSize const&)'
collect2: error: ld returned 1 exit status

13:48:49 Build Finished (took 1s.609ms)
4

1 回答 1

13

我必须在“Project Properties => C/C++ General => Paths and Symbols”中调整以下设置:

在“包含”选项卡上,对于 GNU C++ 语言,添加以下包含路径:

  • /usr/include/qt4
  • /usr/include/qt4/QtCore
  • /usr/include/qt4/QtGui

在“符号”选项卡上,对于 GNU C++ 语言,定义以下值为“1”的符号(对您来说可能不同,但至少需要 QT_CC_GNU、QT_CORE_LIB 和 QT_GUI_LIB):

  • QT_CC_GNU
  • QT_CORE_LIB
  • QT_GUI_LIB
  • QT_NO_DEBUG
  • QT_SHARED
  • QT_TESTLIB_LIB
  • QT_WEBKIT

使用这些设置,源索引器运行良好。除此之外,Eclipse 只是为构建调用“make”。

于 2012-10-01T09:51:45.087 回答