diff options
Diffstat (limited to 'project/toolset.py')
-rw-r--r-- | project/toolset.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project/toolset.py b/project/toolset.py index 7eeae76..136e6dd 100644 --- a/project/toolset.py +++ b/project/toolset.py @@ -491,7 +491,7 @@ class CMakeCustom(Toolset): config_path = self._cmake_write_config(build_dir, contents) return super().cmake_args(build_dir, platform) + [ - '-D', f'CMAKE_TOOLCHAIN_FILE={config_path}', + f'-DCMAKE_TOOLCHAIN_FILE={config_path}', ] |