哪种基于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 中的任何内容都不像“项目文件”。
答案 0 :(得分:1)
我相信使用了Glade,或者至少在当时使用过{{3}}。
顺便说一句,我不确定Gnome是C ++。有一些C ++包装器,比如gtkmm和glibmm,但我相信核心Gnome是用C语言编写的。答案 1 :(得分:0)
在Anjuta中简单地“从现有来源创建项目”。 Anjuta的“项目文件”不包含大量信息,而是使用Makefile.am和configure.ac文件。
我不知道gnome-system-monitor开发人员使用了什么,但我读过许多Gnome开发人员使用emacs,显然也不需要“项目文件”。