diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
commit | 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch) | |
tree | e5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/boost/tools/build/test/qt5.py | |
parent | Initial commit. (diff) | |
download | ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.tar.xz ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.zip |
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/tools/build/test/qt5.py')
-rwxr-xr-x | src/boost/tools/build/test/qt5.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/boost/tools/build/test/qt5.py b/src/boost/tools/build/test/qt5.py new file mode 100755 index 00000000..d9e1226e --- /dev/null +++ b/src/boost/tools/build/test/qt5.py @@ -0,0 +1,19 @@ +#!/usr/bin/python + +# (c) Copyright Juergen Hunold 2012 +# 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 BoostBuild +import os + +# Run test in real directory in order to find Boost.Test via Boost Top-Level +# Jamroot. +qt5_dir = os.getcwd() + "/qt5" + +t = BoostBuild.Tester(workdir=qt5_dir) + +t.run_build_system() + +t.cleanup() |