We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd4c268 commit eee564fCopy full SHA for eee564f
doc/extensions/zephyr/application.py
@@ -366,8 +366,8 @@ def _generate_cmake(self, **kwargs):
366
tool_build_dir = ''
367
else:
368
source_dir = ' {}'.format(app) if app else ' .'
369
- cmake_build_dir = ' -B{}'.format(build_dir)
370
- tool_build_dir = ' -C{}'.format(build_dir)
+ cmake_build_dir = ' -B {}'.format(build_dir)
+ tool_build_dir = ' -C {}'.format(build_dir)
371
372
# Now generate the actual cmake and make/ninja commands
373
gen_arg = ' -GNinja' if generator == 'ninja' else ''
0 commit comments