diff options
Diffstat (limited to 'icespider/unittests/Jamfile.jam')
-rw-r--r-- | icespider/unittests/Jamfile.jam | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/icespider/unittests/Jamfile.jam b/icespider/unittests/Jamfile.jam index 1011a8f..877c1df 100644 --- a/icespider/unittests/Jamfile.jam +++ b/icespider/unittests/Jamfile.jam @@ -21,6 +21,7 @@ lib slicer : : : : <include>/usr/include/slicer ; lib slicer-json : : : : <include>/usr/include/slicer ; lib slicer-xml : : : : <include>/usr/include/slicer ; lib boost_utf : : <name>boost_unit_test_framework ; +lib benchmark ; lib stdc++fs ; lib dl ; path-constant me : . ; @@ -98,6 +99,24 @@ run <include>. : testApp ; +run + testPerf.cpp + ../fcgi/cgiRequestBase.cpp + : : : + <slicer>pure + <library>benchmark + <define>ROOT=\"$(me)\" + <library>../common//icespider-common + <library>../core//icespider-core + <implicit-dependency>../core//icespider-core + <implicit-dependency>test-fcgi + <library>stdc++fs + <library>slicer + <library>slicer-json + <library>adhocutil + <include>../fcgi + : testPerf ; + obj test-fcgi : test-fcgi.ice : <toolset>tidy:<checker>none ; run testFcgi.cpp |