thedark Second Lieutenant
Joined: 30 Jul 2005
Posts: 1074
|
Posted: Sun Jul 31, 2005 8:00 am Post subject: FreeBSD : Compiling application with QT |
|
|
While compile qt application under FreeBSD you get error:
/bin/uic about.ui -o about.h
/bin/uic:No such file or directory
*** Error code 1
Stop in /home/projects/nqe.
To get rid of this problem:
1) To compile application under QT define QTDIR variable (assuming you are using bash shell)
# export QTDIR=/usr/X11R6
You can add this line to your startup shell script i.e. ~/.bash_profile
2) Compile your qt application:
# cd /path/to/appdir
# qmake –project
# qmake
# make
3) Execute your code. |
|