1

cutecash (qt プロジェクト) をコンパイルしようとしていますが、少し問題があります。私はちょうど標準をやっています:

cmake .
make

ただし、特に QMainWindow と QString が見つからないというエラーが発生しています。エラーは次のとおりです。

http://pastebin.com/GGHTXE4N

In file included from /home/username/code/gnucash/src/gnc/fpo/ViewletView.hpp:14:0,
                 from /home/username/code/gnucash/src/gnc/fpo/FPO.hpp:4,
                 from /home/username/code/gnucash/src/gnc/fpo/moc_FPO.cxx:9:
/home/username/code/gnucash/src/gnc/mainwindow.hpp:26:23: fatal error: QMainWindow: No such file or directory
compilation terminated.
/home/username/code/gnucash/src/gnc/moc_RecentFileMenu.cxx:15:2: error: #error "This file was generated using the moc from 5.0.1. It"
/home/username/code/gnucash/src/gnc/moc_RecentFileMenu.cxx:16:2: error: #error "cannot be used with the include files from this version of Qt."
/home/username/code/gnucash/src/gnc/moc_RecentFileMenu.cxx:17:2: error: #error "(The moc has changed too much.)"
In file included from /home/username/code/gnucash/src/gnc/AccountItemModel.hpp:28:0,
                 from /home/username/code/gnucash/src/gnc/dashboard.hpp:34,
                 from /home/username/code/gnucash/src/gnc/moc_dashboard.cxx:9:
/home/username/code/gnucash/src/gnc/QofEventWrapper.hpp:37:19: fatal error: QString: No such file or directory
compilation terminated.
In file included from /home/username/code/gnucash/src/gnc/SplitListModel.hpp:29:0,
                 from /home/username/code/gnucash/src/gnc/moc_SplitListModel.cxx:9:
/home/username/code/gnucash/src/gnc/QofEventWrapper.hpp:37:19: fatal error: QString: No such file or directory
compilation terminated.

かなり重要と思われるもの:

error: #error "This file was generated using the moc from 5.0.1. It"
error: #error "cannot be used with the include files from this version of Qt."
error: #error "(The moc has changed too much.)"

qt5-defaultそのため、(ubuntuに)インストールしようとするたびに、削除する必要がありqt4-defaultます。ここでコンパイルしようとすると、QMainWindow と他のいくつかの部分 (QAbstractItemDelegate など) を見つけることができないという同じ問題が発生します。

次の警告も表示されます。

#error "You must build your code with position independent code if Qt was built with -reduce-relocations. " "Compile your code with -fPIC or -fPIE."

アイテムが見つからないために発生したと思われるいくつかの新しいエラーに加えて. 私はubuntu 13.04を使用しています。

4

1 に答える 1

1

私のために働くステップ:

于 2013-10-04T13:50:42.820 に答える