怎么用qtcreator,将文件部署到嵌入式linux设备上。
Unsolved
Chinese
-
我希望将文件部署到嵌入式设备上,看了以下文档以及相关文档
doc.qt.io/qtcreator/creator-deployment-embedded-linux.html我的remote device连接正常
我在pro文件里面加入:target.path = /tmp target.files += $${TARGET} target.files += main.o documentation.path = /tmp documentation.files += main.o INSTALLS += target documentation
点击运行以后,只有app traget 部署过去,并且运行了,但是测试用的main.o没有。
我的run settings 也没有显示main。o
如下图:
![alt text]( )请问如何操作才是??
-
看看生成的Makefile有没有复制
main.o
文件。这样可以把错误分解。