Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 SFML,我想结合使用 Qt Creator。当我手动编译时,我向链接器提供以下参数-lsfmlsystem -lsfmlwindow。
-lsfmlsystem -lsfmlwindow
如果我使用 Qt Creator 和(我认为)QMake,我该怎么做?
只需添加
LIBS += -L/path/to/sfml -lsfmlsystem -lsfmlwindow
到 .pro 文件。
您可以使用 QtCreator 从侧边栏的 Projects 视图打开项目文件,或通过 Ctrl-K 搜索它。(顺便说一句,侧边栏不是左侧的图标列表,它是右侧的窗格,可以使用 Alt-0 显示/隐藏。)