diff options
author | aleksander <olek_filip@wp.pl> | 2022-08-31 13:38:08 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2022-08-31 17:32:39 +0300 |
commit | e121cd123ccc1ee2f33a76d736ee91770a0debe2 (patch) | |
tree | 3210081189e8c331331b0ef94659f7658247817b /mesonbuild/modules/cmake.py | |
parent | 78bf1ec56e50ba7e1cd14240af5d34e706e976bd (diff) | |
download | meson-e121cd123ccc1ee2f33a76d736ee91770a0debe2.zip meson-e121cd123ccc1ee2f33a76d736ee91770a0debe2.tar.gz meson-e121cd123ccc1ee2f33a76d736ee91770a0debe2.tar.bz2 |
modules/cmake: Fix typo
Diffstat (limited to 'mesonbuild/modules/cmake.py')
-rw-r--r-- | mesonbuild/modules/cmake.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/cmake.py b/mesonbuild/modules/cmake.py index 326aac6..a46c399 100644 --- a/mesonbuild/modules/cmake.py +++ b/mesonbuild/modules/cmake.py @@ -127,7 +127,7 @@ class CMakeSubproject(ModuleObject): if res is None: raise InterpreterException(f'The CMake target {tgt} does not exist\n' + ' Use the following command in your meson.build to list all available targets:\n\n' + - ' message(\'CMaket targets:\\n - \' + \'\\n - \'.join(<cmake_subproject>.target_list()))') + ' message(\'CMake targets:\\n - \' + \'\\n - \'.join(<cmake_subproject>.target_list()))') # Make sure that all keys are present (if not this is a bug) assert all([x in res for x in ['inc', 'src', 'dep', 'tgt', 'func']]) |