在 Ubuntu 上的代码块内编译 SDL 和 OpenGL
因此,每当我使用终端编译代码时,我都必须使用以下内容进行编译:
-lSDL -lGL -lGLU
如何在代码块中执行此操作?我尝试将它们放入项目的构建选项中,但这并没有解决任何问题。
编辑:我也尝试过设置程序参数,但没有成功......
So anytime I compile my code using the terminal I have to compile with:
-lSDL -lGL -lGLU
How do I do this in Code Blocks? I have tried putting those into the build options for the project, but this did not fix anything.
edit: I have also tried Set Program Arguments, and it has not worked...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
选项
-l
是链接器选项。您可以在链接器设置选项卡(在构建选项中)中添加要链接的库。使用“添加”按钮,您可以添加库 GL、GLU 和 SDL。Option
-l
is a linker option. You may add the libraries you want to link with in the linker settings tab (in the build options). Using the Add button you may add libraries GL, GLU and SDL.