Qt Creator 项目无法在 Windows 上构建(链接器错误)
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您应该使用
SOURCES
而不是LIBS
。Looks like you should have
SOURCES
instead ofLIBS
.