搭建qt环境
Posted linux-37ge
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了搭建qt环境相关的知识,希望对你有一定的参考价值。
一. 什么是QT
二. tslib移植和测试
2.1. 什么是tslib
2.2. 部署tslib
2.2.1. 获取tslib-1.4源文件
a. 下载地址:https://github.com/kergoth/tslib#setup-and-configure-tslib
b. tar -xvf tslib-1.4.tar.gz
[email protected]:~/qt_porting# ls tslib tslib-1.4.tar.gz [email protected]:~/qt_porting#
2.2.2.
a. cd tslib
b. ./autogen.sh
c. echo "ac_cv_func_malloc_0_nonnull=yes">arm-linux.cache
d. mkdir /opt/tslib
e. ./configure --prefix=/opt/tslib --host=arm-linux --cache-file=arm-linux.cache
PS: ./autogen.sh时报错:./autogen.sh: 4: autoreconf: not found,是因为系统中没有安装autoconf工具,解决方法:先让ubuntu能上网,然后执行:sudo apt-get install autoconf automake libtool
2.2.3.
# make
# make install
[email protected]:/opt# ls tslib [email protected]:/opt# cd tslib/ [email protected]:/opt/tslib# ls bin etc include lib [email protected]:/opt/tslib#
# vi /usr/local/tslib/etc/ts.conf
module_raw input
module pthres pmin=1
module variance delta=30
module dejitter delta=100
module linear
# Uncomment if you wish to use the linux input layer event interface module_raw input # Uncomment if you‘re using a Sharp Zaurus SL-5500/SL-5000d # module_raw collie # Uncomment if you‘re using a Sharp Zaurus SL-C700/C750/C760/C860 # module_raw corgi # Uncomment if you‘re using a device with a UCB1200/1300/1400 TS interface # module_raw ucb1x00 # Uncomment if you‘re using an HP iPaq h3600 or similar # module_raw h3600 # Uncomment if you‘re using a Hitachi Webpad # module_raw mk712 # Uncomment if you‘re using an IBM Arctic II # module_raw arctic2 module pthres pmin=1 module variance delta=30 module dejitter delta=100 module linear
以上是关于搭建qt环境的主要内容,如果未能解决你的问题,请参考以下文章
spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段