diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2020-08-08 13:56:56 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-08-09 19:36:10 +0300 |
commit | 948741355f1d624f209e2b2d02740372fc9aa8c2 (patch) | |
tree | 8afcd3535790d0e856f2cdae2af11b9cc22b96a4 /mesonbuild/modules/cmake.py | |
parent | 1ddd2b4cbe8f7fc055578beb874589cd3abda4e5 (diff) | |
download | meson-948741355f1d624f209e2b2d02740372fc9aa8c2.zip meson-948741355f1d624f209e2b2d02740372fc9aa8c2.tar.gz meson-948741355f1d624f209e2b2d02740372fc9aa8c2.tar.bz2 |
cmake: Make the CMake targte not found error more useful (see #7567)
Diffstat (limited to 'mesonbuild/modules/cmake.py')
-rw-r--r-- | mesonbuild/modules/cmake.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mesonbuild/modules/cmake.py b/mesonbuild/modules/cmake.py index ca98b1c..2383753 100644 --- a/mesonbuild/modules/cmake.py +++ b/mesonbuild/modules/cmake.py @@ -92,7 +92,9 @@ class CMakeSubprojectHolder(InterpreterObject, ObjectHolder): tgt = args[0] res = self.held_object.cm_interpreter.target_info(tgt) if res is None: - raise InterpreterException('The CMake target {} does not exist'.format(tgt)) + raise InterpreterException('The CMake target {} does not exist\n'.format(tgt) + + ' 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()))') # 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']])) |