(self)
| 288 | spawn(['./configure.sh']) |
| 289 | |
| 290 | def create_boost_config(self): |
| 291 | mkpath(self.omim_builddir) |
| 292 | with open(self.get_boost_config_path(), 'w') as f: |
| 293 | f.write( |
| 294 | 'using python : {} : {} : {} ;\n'.format( |
| 295 | get_python_version(), |
| 296 | sys.executable, |
| 297 | get_python_inc(), |
| 298 | ) |
| 299 | ) |
| 300 | |
| 301 | def get_boost_python_builddir(self): |
| 302 | return os.path.join( |
no test coverage detected