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 | 29a47a94bfc09450802484e5cd3f835d39c9f66c (patch) | |
tree | a1d634fc022f58b83c37fe1d648481773b4d1891 /python/setup.py.in | |
parent | 4b9e9d87b0ff91a98bfffb11d95f6b30f8e4c1b3 (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', |