2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00
Files
build/test/qt5.py
2021-02-20 21:35:16 -06:00

20 lines
463 B
Python
Executable File

#!/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.txt or copy at https://www.bfgroup.xyz/b2/LICENSE.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()