Qt Creator 项目无法在 Windows 上构建(链接器错误)

发布于 2024-12-17 06:00:35 字数 495 浏览 0 评论 0原文

我在 Linux (Ubuntu 11.04) 上有一个工作项目,但是当我尝试在 Windows 7 计算机上构建完全相同的代码时,出现以下错误:

LINK : fatal error LNK1104: cannot open file 'windows_wminput.c'

我正在处理的项目使用名为 ManyMouse。我已将 .c 文件包含在我的 .pro 文件中,如下所示:

LIBS += windows_wminput.c \
linux_evdev.c \
x11_xinput2.c \
macosx_hidmanager.c \
macosx_hidutilities.c

同样,此项目/设置在 Linux 上运行良好,但在 Windows 上出现错误。为什么不起作用?

I have a working project on Linux (Ubuntu 11.04), but when i try to build the same exact code on my Windows 7 machine, I get the following error:

LINK : fatal error LNK1104: cannot open file 'windows_wminput.c'

The project I'm working on uses a C library called ManyMouse. I have included the .c files in my .pro file as follows:

LIBS += windows_wminput.c \
linux_evdev.c \
x11_xinput2.c \
macosx_hidmanager.c \
macosx_hidutilities.c

Again, this project/setup works fine on Linux, but gives an error on Windows. Why doesn't it work?

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

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

发布评论

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

评论(1

半衬遮猫 2024-12-24 06:00:35

看起来您应该使用 SOURCES 而不是 LIBS

Looks like you should have SOURCES instead of LIBS.

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