diff options
Diffstat (limited to 'unittests/Jamfile.jam')
-rw-r--r-- | unittests/Jamfile.jam | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/unittests/Jamfile.jam b/unittests/Jamfile.jam index a44275f..830fd25 100644 --- a/unittests/Jamfile.jam +++ b/unittests/Jamfile.jam @@ -3,7 +3,7 @@ import testing ; lib boost_utf : : <name>boost_unit_test_framework ; lib dryice : : : : <library>..//icetray ; -path-constant me : . ; +path-constant gitdir : ../.git ; lib common : mockDefs.cpp @@ -12,17 +12,17 @@ lib common : <library>../src//gitfs++11 <library>..//adhocutil <library>boost_utf - <define>ROOT=\"$(me)\" + <define>ROOT=\"$(gitdir)\" : : <library>dryice <library>../src//gitfs++11 <library>boost_utf - <define>ROOT=\"$(me)\" + <define>ROOT=\"$(gitdir)\" <define>BOOST_TEST_DYN_LINK ; -run core.cpp : : : - <library>common - ; +run config.cpp : : : <library>common ; +run core.cpp : : : <library>common ; +run service.cpp : : : <library>common ; |