diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-07-20 10:53:14 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-07-20 10:53:14 +0100 |
commit | 4c25da8a7ba7437657c3e2da592145113d3532f4 (patch) | |
tree | 40f0468135089ff4f9e967bf8ee74b020bee67f7 /unittests/Jamfile.jam | |
download | netfs-gitfs-4c25da8a7ba7437657c3e2da592145113d3532f4.tar.bz2 netfs-gitfs-4c25da8a7ba7437657c3e2da592145113d3532f4.tar.xz netfs-gitfs-4c25da8a7ba7437657c3e2da592145113d3532f4.zip |
Initial commit
Not a lot of stuff, hard coded paths, tests against /usr/portage
Diffstat (limited to 'unittests/Jamfile.jam')
-rw-r--r-- | unittests/Jamfile.jam | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/unittests/Jamfile.jam b/unittests/Jamfile.jam new file mode 100644 index 0000000..9de6ea6 --- /dev/null +++ b/unittests/Jamfile.jam @@ -0,0 +1,29 @@ +import testing ; + +lib boost_utf : : <name>boost_unit_test_framework ; +lib dryice : : : : <library>..//icetray ; + +path-constant me : . ; + +lib common : + mockDefs.cpp + : + <library>dryice + <library>../src//gitfs + <library>..//adhocutil + <library>boost_utf + <define>ROOT=\"$(me)\" + : : + <library>dryice + <library>../src//gitfs + <library>boost_utf + <define>ROOT=\"$(me)\" + <define>BOOST_TEST_DYN_LINK + ; + + +run core.cpp : : : + <library>../src//gitfs + <library>common + ; + |