diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-12-29 14:30:01 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-12-29 14:30:01 +0000 |
commit | ced935e5473fb8bcc26c29352b14ec2e3f4597e1 (patch) | |
tree | 1e5f4dc90805ef078c01e6352c0406031c2b155c | |
parent | Fixes for tidy (diff) | |
download | netfs-ced935e5473fb8bcc26c29352b14ec2e3f4597e1.tar.bz2 netfs-ced935e5473fb8bcc26c29352b14ec2e3f4597e1.tar.xz netfs-ced935e5473fb8bcc26c29352b14ec2e3f4597e1.zip |
Move testing import to root
Allows settings options anywhere
-rw-r--r-- | Jamroot.jam | 1 | ||||
-rw-r--r-- | netfs/unittests/Jamfile.jam | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/Jamroot.jam b/Jamroot.jam index 21faf95..69a042f 100644 --- a/Jamroot.jam +++ b/Jamroot.jam @@ -1,5 +1,6 @@ import os ; import slice ; +import testing ; using gcc : : [ os.environ CXX ] ; using pkg-config ; diff --git a/netfs/unittests/Jamfile.jam b/netfs/unittests/Jamfile.jam index f27a3e5..a6021f9 100644 --- a/netfs/unittests/Jamfile.jam +++ b/netfs/unittests/Jamfile.jam @@ -1,5 +1,3 @@ -import testing ; - lib boost_utf : : <name>boost_unit_test_framework ; project |