diff options
author | Chris Dyer <cdyer@allegro.clab.cs.cmu.edu> | 2012-12-15 02:53:56 -0500 |
---|---|---|
committer | Chris Dyer <cdyer@allegro.clab.cs.cmu.edu> | 2012-12-15 02:53:56 -0500 |
commit | c7b1dc8eabd50eefb7403ce36d2746f2df39e30e (patch) | |
tree | 4825420ae4cbf5a97bf378f5f3b7b2a5133d66f2 /python/setup.py.in | |
parent | f5bc0c9ad71b9cf7d46ad56862a084f168817753 (diff) |
enable kenlm compression
Diffstat (limited to 'python/setup.py.in')
-rw-r--r-- | python/setup.py.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/setup.py.in b/python/setup.py.in index dac72903..fa8a9f5e 100644 --- a/python/setup.py.in +++ b/python/setup.py.in @@ -17,7 +17,7 @@ ext_modules = [ sources=['src/_cdec.cpp'], include_dirs=INC, library_dirs=LIB, - libraries=LIBS + ['z', 'cdec', 'utils', 'mteval', 'training_utils', 'klm', 'klm_util', 'ksearch'], + libraries=['cdec', 'utils', 'mteval', 'training_utils', 'klm', 'klm_util', 'ksearch'] + LIBS, extra_compile_args=CPPFLAGS, extra_link_args=LDFLAGS), Extension(name='cdec.sa._sa', |