summaryrefslogtreecommitdiff
path: root/tools/build/v2/example/qt/qt4/hello/jamroot.jam
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build/v2/example/qt/qt4/hello/jamroot.jam')
-rw-r--r--tools/build/v2/example/qt/qt4/hello/jamroot.jam14
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/build/v2/example/qt/qt4/hello/jamroot.jam b/tools/build/v2/example/qt/qt4/hello/jamroot.jam
new file mode 100644
index 0000000000..83952f17b2
--- /dev/null
+++ b/tools/build/v2/example/qt/qt4/hello/jamroot.jam
@@ -0,0 +1,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 ; \ No newline at end of file