qt4.py 463 B

12345678910111213141516171819
  1. #!/usr/bin/python
  2. # (c) Copyright Juergen Hunold 2008
  3. # Use, modification, and distribution are subject to the
  4. # Boost Software License, Version 1.0. (See accompanying file
  5. # LICENSE.txt or copy at https://www.bfgroup.xyz/b2/LICENSE.txt)
  6. import BoostBuild
  7. import os
  8. # Run test in real directory in order to find Boost.Test via Boost Top-Level
  9. # Jamroot.
  10. qt4_dir = os.getcwd() + "/qt4"
  11. t = BoostBuild.Tester(workdir=qt4_dir)
  12. t.run_build_system()
  13. t.cleanup()