diff options
author | Patrick Simianer <p@simianer.de> | 2012-07-03 15:43:20 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2012-07-03 15:43:20 +0200 |
commit | 4ec3625b3a1aa9cb417f8a551ad6723626a4c656 (patch) | |
tree | b26acbcb8e1d434f144b5396acdd8095c94d3328 /python/setup.py | |
parent | efe18d73d96958dfb6581f6f8a60362f7ad0a0c9 (diff) | |
parent | 7937972d2478a3b377930a30b77b07d2e6e902ba (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'python/setup.py')
-rw-r--r-- | python/setup.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/python/setup.py b/python/setup.py index 49a1ec8f..cc8b289d 100644 --- a/python/setup.py +++ b/python/setup.py @@ -3,8 +3,8 @@ from distutils.extension import Extension from Cython.Distutils import build_ext import os -INC = ['..', 'src/', '../decoder', '../utils'] -LIB = ['../decoder', '../utils', '../mteval', '../klm/lm', '../klm/util'] +INC = ['..', 'src/', '../decoder', '../utils', '../mteval'] +LIB = ['../decoder', '../utils', '../mteval', '../training', '../klm/lm', '../klm/util'] BOOST_ROOT = os.getenv('BOOST_ROOT') if BOOST_ROOT: @@ -18,7 +18,8 @@ ext_modules = [ include_dirs=INC, library_dirs=LIB, libraries=['boost_program_options-mt', 'z', - 'cdec', 'utils', 'mteval', 'klm', 'klm_util']) + 'cdec', 'utils', 'mteval', 'training', 'klm', 'klm_util'], + extra_compile_args=['-DHAVE_CONFIG_H']), ] setup( |