c++ - 使用 gtkmm 编译 Hello world 程序的问题

标签 c++ ubuntu-12.04 gtkmm

我是 C++ 和 gtkmm 的新手。我目前正在尝试使用一个窗口和一个按钮来编译我在网上找到的教程。我在 Ubuntu 12.04 中编译。我可以很好地编译单个文件,但是当我尝试使用 Makefile 编译多个文件时,出现我不理解的错误:

sarah@superawesome:~/gtkexample$ make
g++ -c main.cc
In file included from HelloSarah.h:4:0,
                 from main.cc:1:
/usr/include/gtkmm-3.0/gtkmm/button.h:7:28: fatal error: glibmm/ustring.h: No such file or directory
compilation terminated.
make: *** [main.o] Error 1

我真的不明白错误,我已经搜索了几个小时。非常感谢任何帮助或深入了解我的问题。

这些是我的 3 个文件和 Makefile:

#ifndef GTKMM_HELLOSARAH_H
#define GTKMM_HELLOSARAH_H

#include <gtkmm-3.0/gtkmm/button.h>
#include <gtkmm/window.h>

class HelloSarah : public Gtk::Window
{

public:
  HelloSarah();
  virtual ~HelloSarah();

protected:
  //Signal handlers:
  void on_button_clicked();

  //Member widgets:
  Gtk::Button m_button;
};

#endif 

主.cc

#include "HelloSarah.h"
#include <gtkmm/application.h>

int main (int argc, char *argv[])
{
  Glib::RefPtr<Gtk::Application> app = Gtk::Application::create(argc, argv,     "org.gtkmm.example");

  HelloSarah hellosarah;

  //Shows the window and returns when it is closed.
  return app->run(hellosarah);
}

和HelloSarah.cc

#include "helloSarah.h"
#include <iostream>

HelloSarah::HelloSarah()
: m_button("Hello Sarah")   // creates a new button with label "HelloSarah".
{
  // Sets the border width of the window.
  set_border_width(10);

  // When the button receives the "clicked" signal, it will call the
  // on_button_clicked() method defined below.
  m_button.signal_clicked().connect(sigc::mem_fun(*this,
          &HelloSarah::on_button_clicked));

  // This packs the button into the Window (a container).
  add(m_button);

  // The final step is to display this newly created widget...
  m_button.show();
}

HelloSarah::~HelloSarah()
{
}

void HelloSarah::on_button_clicked()
{
  std::cout << "Hello Sarah" << std::endl;
}

最后是我的 Makefile:

app:            main.o HelloSarah.o
                g++ -o app main.o HelloSarah.o

main.o:         main.cc HelloSarah.h
            g++ -c main.cc

HelloSarah.o:   HelloSarah.cc HelloSarah.h
            g++ -c HelloSarah.cc

clean:      
            rm -f *.o app

最佳答案

您示例中的以下 include 语句不正确。它起作用只是因为文件路径是相对于标准 /usr/include/ 目录的,但是 button.h 中的 include 语句没有,所以你会得到一条错误消息.

#include <gtkmm-3.0/gtkmm/button.h>

您必须告诉 g++ 在哪里可以找到必要的包含文件和共享对象。您可以使用 pkg-config 的输出来完成这项工作。

pkg-config --cflags --libs gtkmm-3.0

整个 g++ 命令应该是这样的。

g++ `pkg-config --cflags --libs gtkmm-3.0` -c HelloSarah.cc

之后,您可以简单地使用 gtkmm Hello World 中的包含行.

#include <gtkmm/button.h>

关于c++ - 使用 gtkmm 编译 Hello world 程序的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14541492/

相关文章:

c++ - 在 Qt Creator 中使用正则表达式查找和替换多个文件

c++ - 无法同时在 IPv4 和 IPv6 中将套接字绑定(bind)到端口

c++ - 将 VST 音效/插件应用于音频文件

ubuntu - 在 ubuntu 中安装 Koha

linux - 安装 xen 并更改 grub 设置后 ubuntu 12.04 系统运行速度变慢

c++ - 为什么我的 Linux 编译的二进制文件在 Windows 上运行时不起作用?

c++ - 如何在文件 .cpp gtkmm 中声明小部件

c++ - QML ScrollView 与 ColumnLayout

c++ - GTKmm - 如何将 pixbuf 放入 TreeView 中

mysql - 从mysql执行系统命令