全志A33 lichee 搭建Qt App开发环境编写helloworld

image

开发平台

 芯灵思SinlinxA33开发板 

淘宝店铺: https://sinlinx.taobao.com/

image

嵌入式linux 开发板交流 QQ:641395230

Step 1 在虚拟机(CentOS7)上安装Qt Creator

将qt-creator-opensource-linux-x86_64-3.5.1.run 拷贝到虚拟机中,双击安装,全部点下一步即可。

Step 2 Qt Creater 设置

打开Qt Creator (Applications->Programming->Qt Creator)

1)添加新的设备

点击Tools->Options...->Devices
点Add 添加新设备,配置如下图所示,其中Host name 处填开发板的IP,用户名 root ,密码 sinlinx (此为开发板linux系统root密码)

全志A33 lichee 搭建Qt App开发环境编写helloworld_第1张图片
image

2)连接好网线,在串口终端设置开发板ip,开启ssh

# ifconfig eth0 192.168.0.123 netmask 255.255.255.0
# /sinlinx/sshd start
点击test按钮,出现下图,说明开发板与虚拟机成功连接

全志A33 lichee 搭建Qt App开发环境编写helloworld_第2张图片
image

3)设置编译运行选项

点击Tools->Options...->Build&Run

打开Compilers 选项卡添加编译工具,完成后点Apply 保存。


全志A33 lichee 搭建Qt App开发环境编写helloworld_第3张图片
image

打开Qt Versions 添加QT 版本,完成后点Apply 保存。


全志A33 lichee 搭建Qt App开发环境编写helloworld_第4张图片
image

打开Kits 添加配置。如果没有cmake,需要手动安装cmake
yum install cmake

全志A33 lichee 搭建Qt App开发环境编写helloworld_第5张图片
image

Step 3 编写第一个QT程序

打开Qt Creator,新建一个Qt Widgets Application


全志A33 lichee 搭建Qt App开发环境编写helloworld_第6张图片
image
全志A33 lichee 搭建Qt App开发环境编写helloworld_第7张图片
image
全志A33 lichee 搭建Qt App开发环境编写helloworld_第8张图片
image

1)添加安装路径

打开HelloWorld.pro,在最后添加如下代码:

target.path = /root
INSTALLS += target

2)添加运行参数 -qws

点击Projects->Run


全志A33 lichee 搭建Qt App开发环境编写helloworld_第9张图片
image

3)点击运行,会在开发板/root目录生成Hello_World的可执行文件,./Hello_World即可运行


全志A33 lichee 搭建Qt App开发环境编写helloworld_第10张图片
image
全志A33 lichee 搭建Qt App开发环境编写helloworld_第11张图片
image

你可能感兴趣的:(全志A33 lichee 搭建Qt App开发环境编写helloworld)