summaryrefslogtreecommitdiff
path: root/tools/build/v2/example/qt/qt4/hello/jamroot.jam
blob: 83952f17b296006031a6fa564170f288c0ec579a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

import qt4 ;

if ! [ qt4.initialized ]
{
    ECHO "Warning: Qt4 not initialized in user-config.jam" ;
    ECHO "Assuming /space/p2/ghost/build/Qt4 as location." ;
    ECHO "This is very likely won't work for you. " ;
    using qt4 : /space/p2/ghost/build/Qt4 ;
}

project : requirements <threading>multi ;

exe arrow : main.cpp arrow.cpp arrow.h /qt//QtGui ;