1# Copyright Felix E. Klee, 2003
2# Distributed under the Boost Software License, Version 1.0.
3# (See accompanying file LICENSE_1_0.txt
4# or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6import qt4 ;
7if ! [ qt4.initialized ]
8{
9    ECHO "Warning: Qt4 not initialized in user-config.jam" ;
10    ECHO "Assuming /space/p2/ghost/build/Qt4 as location." ;
11    ECHO "This is very likely won't work for you. " ;
12    using qt4 : /space/p2/ghost/build/Qt4 ;
13}
14
15project : requirements <threading>multi
16    ;
17
18exe hello : main.cpp hello_world_widget.ui : <library>/qt//QtGui ;
19