2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-10 11:22:12 +00:00
Files
build/example/qt/qt4/moccable-cpp/Jamroot
Vladimir Prus 1e56320bdc Don't configure Qt if already configured.
[SVN r33623]
2006-04-10 07:26:26 +00:00

19 lines
405 B
Plaintext

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 ;
}
import cast ;
exe main : main.cpp
[ cast _ moccable-cpp : main.cpp ]
/qt//QtGui
: <threading>multi
;