2015-03-04 05:45:47 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# Build the project with Biicode.
|
|
|
|
|
2015-03-04 17:22:52 +00:00
|
|
|
import glob, os, shutil
|
2015-03-04 05:45:47 +00:00
|
|
|
from subprocess import check_call
|
|
|
|
|
|
|
|
project_dir = 'biicode_project'
|
2015-03-04 16:07:26 +00:00
|
|
|
check_call(['bii', 'init', project_dir], env=env)
|
2015-03-04 05:45:47 +00:00
|
|
|
cppformat_dir = os.path.join(project_dir, 'blocks/vitaut/cppformat')
|
2015-03-04 06:07:20 +00:00
|
|
|
shutil.copytree('.', cppformat_dir,
|
2015-03-04 15:07:13 +00:00
|
|
|
ignore=shutil.ignore_patterns('biicode_project', cmake_dir))
|
2015-03-04 05:45:47 +00:00
|
|
|
for f in glob.glob('support/biicode/*'):
|
|
|
|
shutil.copy(f, cppformat_dir)
|
2015-03-04 17:22:52 +00:00
|
|
|
check_call(['bii', 'cpp:build'], cwd=project_dir, env=env)
|