aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2019-05-28 16:49:21 -0700
committerDylan Baker <dylan@pnwbakers.com>2019-05-29 11:25:27 -0700
commit2e2c3c968c02c3d8e87aa9e1547a842cd793f045 (patch)
treea34a42fe119898123a4c3f952f539dafad56d304 /mesonbuild
parente83084fbfee22820b646627e35c5a1a6bf06f05c (diff)
downloadmeson-2e2c3c968c02c3d8e87aa9e1547a842cd793f045.zip
meson-2e2c3c968c02c3d8e87aa9e1547a842cd793f045.tar.gz
meson-2e2c3c968c02c3d8e87aa9e1547a842cd793f045.tar.bz2
tests: Test the cmake parser more thuroughly
It turns out there are bugs, in particular with spaces in variables...
Diffstat (limited to 'mesonbuild')
-rw-r--r--mesonbuild/dependencies/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/dependencies/base.py b/mesonbuild/dependencies/base.py
index 1ccbf6f..86cc3f8 100644
--- a/mesonbuild/dependencies/base.py
+++ b/mesonbuild/dependencies/base.py
@@ -1666,7 +1666,7 @@ class CMakeDependency(ExternalDependency):
else:
self.targets[i].properies[propName] = propVal
- def _cmake_set_target_properties(self, tline: CMakeTraceLine):
+ def _cmake_set_target_properties(self, tline: CMakeTraceLine) -> None:
# DOC: https://cmake.org/cmake/help/latest/command/set_target_properties.html
args = list(tline.args)