diff options
author | Chris Dyer <cdyer@cs.cmu.edu> | 2012-11-05 21:34:22 -0500 |
---|---|---|
committer | Chris Dyer <cdyer@cs.cmu.edu> | 2012-11-05 21:34:22 -0500 |
commit | 709bf16fbf7e88d15c9a9f3356c63e9ff38fa05d (patch) | |
tree | 3ec67e4084b6be65555d70766ebfe5d2b18cd410 /python | |
parent | 782fb27af98ed98256cc25c832131c59c8e9ce9c (diff) | |
parent | 2eb77b77d28f6d9dc88ecb6ca999994bdb555445 (diff) |
Merge branch 'master' of https://github.com/redpony/cdec
Diffstat (limited to 'python')
-rw-r--r-- | python/setup.py.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/setup.py.in b/python/setup.py.in index 4d77fbc7..f191ef8b 100644 --- a/python/setup.py.in +++ b/python/setup.py.in @@ -3,7 +3,7 @@ from distutils.extension import Extension import re INC = ['..', 'src/', '../decoder', '../utils', '../mteval'] -LIB = ['../decoder', '../utils', '../mteval', '../training', '../klm/lm', '../klm/util'] +LIB = ['../decoder', '../utils', '../mteval', '../training', '../klm/lm', '../klm/util', '../klm/search'] # Set automatically by configure LIBS = re.findall('-l([^\s]+)', '@LIBS@') @@ -17,7 +17,7 @@ ext_modules = [ sources=['src/_cdec.cpp'], include_dirs=INC, library_dirs=LIB, - libraries=LIBS + ['z', 'cdec', 'utils', 'mteval', 'training', 'klm', 'klm_util'], + libraries=LIBS + ['z', 'cdec', 'utils', 'mteval', 'training', 'klm', 'klm_util', 'ksearch'], extra_compile_args=CPPFLAGS, extra_link_args=LDFLAGS), Extension(name='cdec.sa._sa', |