Add John MucCullough's simple key/value storage server.
[bluesky.git] / kvstore / protobufrpc / SConscript
1 Import('env')
2
3 base_files = ['protobufrpc.cc', 'socket_pool.cc', 'workqueue.cc']
4
5 protobufrpc = env.StaticLibrary('protobufrpc', base_files)
6
7 Return('protobufrpc')