-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathJamfile.v2
More file actions
29 lines (20 loc) · 759 Bytes
/
Jamfile.v2
File metadata and controls
29 lines (20 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import os ;
local BOOST_ROOT = [ os.environ BOOST_ROOT ] ;
use-project /boost : $(BOOST_ROOT) ;
using testing ;
project memcache++
: requirements
<source>/boost//unit_test_framework
<source>/boost//serialization
<source>/boost//regex
<source>/boost//system
<source>/boost//thread
<define>_REENTRANT
<linkflags>-pthread
<include>.
;
unit-test memcache_protocol_test : test/memcache_protocol_test.cpp ;
unit-test memcache_protocol_parser_test : test/memcache_protocol_parser_test.cpp ;
unit-test memcache_hash_test : test/memcache_hash_test.cpp ;
unit-test memcache_pool_test : test/memcache_pool_test.cpp ;
unit-test memcache_fluent_test : test/memcache_fluent_interface.cpp ;