diff options
Diffstat (limited to '')
-rw-r--r-- | project/cmake/build.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/project/cmake/build.py b/project/cmake/build.py index 6bc7772..d2c2070 100644 --- a/project/cmake/build.py +++ b/project/cmake/build.py @@ -153,6 +153,8 @@ class BuildParameters: def create_build_dir(self): if self.build_dir is not None: logging.info('Build directory: %s', self.build_dir) + if not os.path.exists(self.build_dir): + os.makedirs(self.build_dir, exist_ok=True) yield self.build_dir return |