diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2024-04-14 12:58:30 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2025-02-13 15:26:44 +0200 |
commit | 518c732ea9b0f1975f6f28accff3286be4106538 (patch) | |
tree | 2be9544828545a2f9f0676efc6eb82ac197ec4bd /unittests/baseplatformtests.py | |
parent | ea678ed82938ceac00682b2695b57193d36b71b4 (diff) | |
download | meson-optionrefactor3.zip meson-optionrefactor3.tar.gz meson-optionrefactor3.tar.bz2 |
Make all Meson level options overridable per subproject.optionrefactor3
Diffstat (limited to 'unittests/baseplatformtests.py')
-rw-r--r-- | unittests/baseplatformtests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/unittests/baseplatformtests.py b/unittests/baseplatformtests.py index 0ac9c9c..73682e0 100644 --- a/unittests/baseplatformtests.py +++ b/unittests/baseplatformtests.py @@ -299,6 +299,8 @@ class BasePlatformTests(TestCase): else: arg = list(arg) self._run(self.mconf_command + arg + [self.builddir]) + if will_build: + self.build() def getconf(self, optname: str): opts = self.introspect('--buildoptions') |