2010. 8. 2.

Qt Configuration

Qt Configuration

Qt를 효율적으로 사용하기 위해서는 자신에게 가장 맞는 Configuration과 사용 목적에 가장 맞는 Compiler를 가지고 Compile하여 사용하는 것이 필요하다.

기본 설정 예제 : MyConfiguration.sh

#!/bin/sh

./configure -prefix /opt/qt -confirm-license -verbose 2>&1 | tee MyConfigure.log

make -j3 | tee MyMake.log



Embedded Device 용 기본 Arm용 설정 예제 : MyEmbeddedConfig.sh

#!/bin/sh

./configure -embedded -prefix /opt/qtEmbed -platform linux-g++ -xplatform linux-arm-g++ -arch arm

make -j3 | tee MyMake.log



Embedded Device 용 Virtual Frame Buffer 사용 Arm 설정 예제 : MyEmbeddedConfig.sh

#!/bin/sh

./configure -embedded -prefix /opt/qtEmbed -platform linux-g++ -xplatform qws/linux-arm-g++ -arch arm -qvfb

make -j3 | tee MyMake.log



Virtual Frame Buffer 는 Qt에서 직접 Frame buffer를 사용하지 않고 가상 Frame buffer 를 만들어 동작하도록 하는 모드로서 Target에 직접 Application을 구동 하지 않고 Host에서 가상 Frame buffer를 Access하도록 개발 환경을 만들어 개발하고 추후 Target에 Application을 올릴 때 유용하게 사용할 수 있다.

댓글 없음:

댓글 쓰기