Qt 4.7 的 Box2d

发布于 2024-10-17 06:27:52 字数 78 浏览 1 评论 0原文

我使用的是Qt4.7。我能够为 Visual Studio 构建 Box2d。但我怎样才能使用标题& Qt项目中Box2d的库文件。?

I am using Qt4.7. I was able to build Box2d for Visual Studio. But how can I use the header & library files of the Box2d in Qt project.?

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

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

发布评论

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

评论(1

风苍溪 2024-10-24 06:27:52

要将头文件目录添加到您的项目中:
1. 在“解决方案资源管理器”中右键单击该项目,然后选择“属性”
2. 单击“C/C++”
3. 在“其他包含目录”框中给出您想要包含的目录,用分号将其与其他目录分开
4. 单击“确定”

将库文件添加到您的项目中:
1. 在“解决方案资源管理器”中右键单击该项目,然后选择“属性”
2. 单击“链接器”
3. 将自定义导入库插入“其他依赖项”框中,请注意,如果您的路径包含空格,则必须在路径周围使用引号。这是因为列表是用空格分隔的。
4. 单击“确定”。

我不记得 Box2d 是静态库还是 dll 库,但无论哪种情况,您都需要 .lib 文件。除非你在运行时加载它,我对此表示怀疑。

如果你想知道为什么,JGI!

To add header file directory to your Project:
1. Right click on the project in the 'Solution Explorer' and select 'Properties'
2. Click 'C/C++'
3. Give the directory you want to include in the 'Additional Include Directories' - box, separate it from the others with a semicolon
4. Click Ok

To add library files to your Project:
1. Right click on the project in the 'Solution Explorer' and select 'Properties'
2. Click 'Linker'
3. Insert the custom import libraries into the 'Additional dependencies' Box, Note that if your paths contain spaces, you must use Quotations around the path. This is because the list is separated with spaces.
4. Click Ok

I don't remember if Box2d is a static or dll library, but in either case you need the .lib file. Unless you load it run-time, which I doubt.

If you want to know why, JGI!

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