linux下如何编译ogre4j

发布于 2024-11-12 06:15:24 字数 193 浏览 3 评论 0原文

我已经下载了源代码并导入到 eclipse 中。但是当我尝试运行它时,它打印出找不到 ogre4j 的错误。我查看了应该是库二进制文件的文件夹,但什么也没有。我尝试自己编译它,而不是使用 eclipse 自动编译,但我没有找到任何 makefile。

ogre4k编译需要什么插件吗?

在哪里可以找到 ogre4j 的 makefile?

I've download sources and imported then into eclipse. But when i try to run it, it prints error that ogre4j isn't found. I've looked into folder where should be library binaries, but there was nothing. I tried to compile it on my own, not automatic with eclipse, but i haven't found any makefile.

Is there any plugin required for ogre4k compiling?

Where can i find any makefile for ogre4j?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

可是我不能没有你 2024-11-19 06:15:24

根据项目 安装 Wiki 页面,有一个 ant build.xml提供了 ,并且 ogre4j.build.jar 是您感兴趣的目标。

因此,在项目目录中运行 ant ogre4j.build.jar 应该会构建所有内容需要(前提是您已安装 ant)。

在 Eclipse 中右键单击 build.xml 并选择“Run As”-> “Ant Build ...”应该允许您选择目标并运行它。

According to the projects Installation Wiki page there is an ant build.xml provided and ogre4j.build.jar is the target you're interested in.

So running ant ogre4j.build.jar in the project directory should build everything that's needed (provided you've got ant installed).

In Eclipse right-clicking the build.xml and choosing "Run As" -> "Ant Build ..." should allow you to select the target and run it.

叫思念不要吵 2024-11-19 06:15:24

根据 Joachims 的回复,我使用了 ant。但有两个步骤,我已经做到了。
在项目目录中:

mkdir sdk
ln -s /usr/include/OGRE sdk/include
ln -s /usr/lib/OGRE sdk/lib

并修改 build.xml,添加这些行:

<property name="env.JAVA_HOME" value="/usr/lib/jvm/java-6-sun" />
<property name="env.OGRE_HOME" value="sdk"/>

最后运行:

ant ogre4j.build.c

According to the Joachims reply i've used ant. But there was two steps, which i've did.
In projects directory:

mkdir sdk
ln -s /usr/include/OGRE sdk/include
ln -s /usr/lib/OGRE sdk/lib

And modify build.xml, add these lines:

<property name="env.JAVA_HOME" value="/usr/lib/jvm/java-6-sun" />
<property name="env.OGRE_HOME" value="sdk"/>

And finally run:

ant ogre4j.build.c
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文