diff options
author | angelortiz1007 <aoble248@gmail.com> | 2019-08-13 11:30:10 -0500 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2019-08-21 20:28:41 -0400 |
commit | 3dd1bfc31759de2b9008ed58c31eb8fe8915edb9 (patch) | |
tree | 08099d5218321432b764c7ffaf7535b94815e517 /python/servo/command_base.py | |
parent | 27764f61068781cab22de5d46f47805e548da3aa (diff) | |
download | servo-3dd1bfc31759de2b9008ed58c31eb8fe8915edb9.tar.gz servo-3dd1bfc31759de2b9008ed58c31eb8fe8915edb9.zip |
Added support to download nuget and added python code to automate the x64 and arm64 mach build -r/-d --uwp build process.
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r-- | python/servo/command_base.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 94757dbf3b9..9784b0a1af1 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -614,6 +614,7 @@ install them, let us know by filing a bug!") extra_path += [path.join(self.msvc_package_dir("cmake"), "bin")] extra_path += [path.join(self.msvc_package_dir("llvm"), "bin")] extra_path += [path.join(self.msvc_package_dir("ninja"), "bin")] + extra_path += [self.msvc_package_dir("nuget")] arch = (target or host_triple()).split('-')[0] vcpkg_arch = { |