From 19fcec84d8d7d21e796c7624e521b60d28ee21ed Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:45:59 +0200 Subject: Adding upstream version 16.2.11+ds. Signed-off-by: Daniel Baumann --- src/boost/tools/build/test/qt4/jamroot.jam | 82 ++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 src/boost/tools/build/test/qt4/jamroot.jam (limited to 'src/boost/tools/build/test/qt4/jamroot.jam') diff --git a/src/boost/tools/build/test/qt4/jamroot.jam b/src/boost/tools/build/test/qt4/jamroot.jam new file mode 100644 index 000000000..3d8e7d73b --- /dev/null +++ b/src/boost/tools/build/test/qt4/jamroot.jam @@ -0,0 +1,82 @@ +# (c) Copyright Juergen Hunold 2008 +# Use, modification, and distribution are subject to the +# Boost Software License, Version 1.0. (See accompanying file +# LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + +import qt4 ; +import testing ; +import cast ; + + + +if [ qt4.initialized ] +{ + use-project /boost : ../../../.. ; + + project qttest + : requirements + /boost/test//boost_unit_test_framework + ; + + alias qt-tests : + # Check for explicit libraries, /qt should not link any lib + [ link-fail qtcorefail.cpp : /qt ] + + [ run qtcore.cpp /qt//QtCore ] + [ run qtsql.cpp /qt//QtSql ] + [ run qtxml.cpp /qt//QtXml ] + [ run qtnetwork.cpp /qt//QtNetwork ] + [ run qtscript.cpp /qt//QtScript ] + [ run qtscripttools.cpp /qt//QtScriptTools ] + [ run qtxmlpatterns.cpp /qt//QtXmlPatterns ] + + # ToDo: runable example code + [ link qtsvg.cpp /qt//QtSvg ] + [ link qtgui.cpp /qt//QtGui ] + + # Multimedia toolkits. + [ link qtwebkit.cpp /qt//QtWebKit ] + [ link phonon.cpp /qt//phonon ] + [ link qtmultimedia.cpp /qt//QtMultimedia ] + + # QML + [ link qtdeclarative.cpp /qt//QtDeclarative ] + + # Help systems. + [ link qthelp.cpp /qt//QtHelp ] + [ link qtassistant.cpp /qt//QtAssistantClient : @check_for_assistant ] + + # Check working and disabled Qt3Support + [ link qt3support.cpp /qt//Qt3Support : on ] + [ compile-fail qt3support.cpp /qt//Qt3Support : off ] + + # Testing using QtTest. Simple sample + # ToDo: better support for "automoc" aka '#include "qttest.moc"' + [ run qttest.cpp [ cast _ moccable-cpp : qttest.cpp ] /qt//QtTest : : : TEST_MOCK ] + + # Test moc rule + [ run mock.cpp mock.h /qt//QtCore : : : TEST_MOCK ] + + # Test resource compiler + [ run rcc.cpp rcc.qrc /qt//QtCore : : : "-compress 9 -threshold 10" ] + + : # requirements + : # default-build + : # usage-requirements + ; +} + +# QtAssistant is removed from Qt >= 4.6 +rule check_for_assistant ( properties * ) +{ + # Extract version number from toolset + local version = [ MATCH "([0-9.]+).*" + : $(properties) ] ; + + if $(version) > "4.6.99" + { + result += no ; + } +} + + -- cgit v1.2.3