Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
472 B
12 lines
472 B
16 years ago
|
from distutils.core import setup, Extension
|
||
|
setup(name='upb',
|
||
|
version='0.1',
|
||
|
ext_modules=[Extension('upb.definition', ['definition.c'],
|
||
|
include_dirs=['../../src'],
|
||
|
define_macros=[("UPB_USE_PTHREADS", 1),
|
||
|
("UPB_UNALIGNED_READS_OK", 1)],
|
||
|
library_dirs=['../../src'],
|
||
|
libraries=['upb']
|
||
|
)],
|
||
|
)
|