Qt 4.7 的 Box2d
我使用的是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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要将头文件目录添加到您的项目中:
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!