aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2021-05-08 20:21:04 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2021-05-08 20:23:15 +0100
commitabf6e43fa1e5618541695cbff466bd17f98e3ca7 (patch)
treec271101c3d6a3c563ff2aff13de0b218bf9ea0d6 /run_tests.py
parentd433abf89cfe6be640d7a913bfdd4ae723f8b573 (diff)
downloadmeson-vsenv.zip
meson-vsenv.tar.gz
meson-vsenv.tar.bz2
Set up VS environment automatically when run.vsenv
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py
index b2a25f0..91fc8ba 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
-# Copyright 2012-2017 The Meson development team
+# Copyright 2012-2021 The Meson development team
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -396,5 +396,6 @@ def main():
return returncode
if __name__ == '__main__':
+ mesonmain.setup_vsenv()
print('Meson build system', meson_version, 'Project and Unit Tests')
raise SystemExit(main())