pull/15/head
Jussi Pakkanen 11 years ago
parent fe78d89d7f
commit a2b597d602
  1. 4
      dependencies.py

@ -275,8 +275,8 @@ class BoostDependency(Dependency):
# FIXME, these are in gcc format, not msvc. # FIXME, these are in gcc format, not msvc.
# On the other hand, so are the flags that # On the other hand, so are the flags that
# pkg-config returns. # pkg-config returns.
flags += '-I' + os.path.join(self.boost_root, 'include') flags.append('-I' + os.path.join(self.boost_root, 'include'))
flags += '-L' + os.path.join(self.boost_root, 'lib') flags.append('-L' + os.path.join(self.boost_root, 'lib'))
for module in self.requested_modules: for module in self.requested_modules:
if module in self.lib_modules or module in self.lib_modules_mt: if module in self.lib_modules or module in self.lib_modules_mt:
linkcmd = '-lboost_' + module linkcmd = '-lboost_' + module

Loading…
Cancel
Save