我在使用 Linux 时对 Allegro 没有任何问题,但我不知道如何在 OS X 上包含该库。我最初是从源代码构建的,但我卸载了它以尝试 MacPorts 版本。标头当前位于/opt/local/include/allegro5/
.
我不能使用#include <allegro5/allegro.h>
或
#include "/opt/local/include/allegro5/allegro.h"
.
基于编译错误,我认为 Allegro 标头通过以下方式相互引用
#include <allegro5/other_header.h>
.
那么如何将 allegro5 目录添加到 gcc/g++ 的包含路径中呢?
谢谢!