2

哪个基于 GUI 的 C++ IDE 通常用于开发 gnome 应用程序?

我专门询问gnome-system-monitor因为我想摆弄它。我想用一个不错的基于 GUI 的 C++ IDE 来做这件事。

我认为 Anjuta 是 gnome 应用程序的默认 IDE。但是当我获取源代码时,没有明显是项目文件的文件。

编辑:这是我到目前为止所做的

# get the build dependencies for the gnome-system-monitor
sudo aptitude  build-dep gnome-system-monitor

# get the sources for the gnome-system-monitor
mkdir example
cd example
apt-get source gnome-system-monitor

# build the gnome-system-monitor
cd  gnome-system-monitor-2.28.0
sh configure
make

但是gnome-system-monitor-2.28.0 中的任何内容都不像“项目文件”。

4

2 回答 2

1

我相信Glade被使用过,或者至少当时被使用过。

顺便说一句,我不确定 Gnome 是 C++。有 C++ 包装器,如 gtkmm 和 glibmm,但我相信核心 Gnome 是用 C 编写的。

于 2009-12-29T23:49:55.180 回答
0

只需在 Anjuta 中“从现有资源创建项目”。Anjuta 的“项目文件”不包含大量信息,而是使用 Makefile.am 和 configure.ac 文件。

我不知道 gnome-system-monitor 开发人员使用什么,但我读过很多 Gnome 开发人员使用 emacs,这显然也不需要“项目文件”。

于 2009-12-30T01:06:07.137 回答