summaryrefslogtreecommitdiff
path: root/python/setup.py
diff options
context:
space:
mode:
authorWaleed Ammar <wammar@cs.cmu.edu>2012-06-17 11:46:38 -0400
committerWaleed Ammar <wammar@cs.cmu.edu>2012-06-17 11:46:38 -0400
commit681ba488e82b8e2079f2d6c2af63014fa86834ac (patch)
tree72b95092aa8576c8b35419dc1372d1ab61a6ac1b /python/setup.py
parent21bed034628ae5e0e51a5dae6db0427ec1fd2e47 (diff)
parentc3619d27a6e64d2f13fc16d8959ad7ea70486eb8 (diff)
Merge branch 'master' of github.com:redpony/cdec
Diffstat (limited to 'python/setup.py')
-rw-r--r--python/setup.py13
1 files changed, 11 insertions, 2 deletions
diff --git a/python/setup.py b/python/setup.py
index 756de088..49a1ec8f 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -1,13 +1,22 @@
from distutils.core import setup
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']
+
+BOOST_ROOT = os.getenv('BOOST_ROOT')
+if BOOST_ROOT:
+ INC.append(os.path.join(BOOST_ROOT, 'include/'))
+ LIB.append(os.path.join(BOOST_ROOT, 'lib/'))
ext_modules = [
Extension(name='_cdec',
sources=['src/_cdec.pyx'],
language='C++',
- include_dirs=['..', 'src/', '../decoder', '../utils'],
- library_dirs=['../decoder', '../utils', '../mteval', '../klm/lm', '../klm/util'],
+ include_dirs=INC,
+ library_dirs=LIB,
libraries=['boost_program_options-mt', 'z',
'cdec', 'utils', 'mteval', 'klm', 'klm_util'])
]