diff options
author | Sean Brogan <sean.brogan@microsoft.com> | 2019-10-07 18:37:13 -0700 |
---|---|---|
committer | Michael D Kinney <michael.d.kinney@intel.com> | 2019-11-11 13:01:53 -0800 |
commit | f7978bb25869408ab24673beb9f83d9b81f8061c (patch) | |
tree | b6ae4ac745da791259523fcd6fd9643304ab0843 /BaseTools/BinWrappers | |
parent | 7569e35bc9f965c4b385d7cc91118228c1d93716 (diff) | |
download | edk2-f7978bb25869408ab24673beb9f83d9b81f8061c.tar.gz |
BaseTools: Add YAML files with path env and tool extdeps
https://bugzilla.tianocore.org/show_bug.cgi?id=2315
Cc: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'BaseTools/BinWrappers')
-rw-r--r-- | BaseTools/BinWrappers/PosixLike/posix_path_env.yaml | 10 | ||||
-rw-r--r-- | BaseTools/BinWrappers/WindowsLike/win_build_tools_path_env.yaml | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/BaseTools/BinWrappers/PosixLike/posix_path_env.yaml b/BaseTools/BinWrappers/PosixLike/posix_path_env.yaml new file mode 100644 index 0000000000..8b32e010bb --- /dev/null +++ b/BaseTools/BinWrappers/PosixLike/posix_path_env.yaml @@ -0,0 +1,10 @@ +## @file
+# Set this folder on the path for all linux builds
+#
+# Copyright (c) Microsoft Corporation.
+# SPDX-License-Identifier: BSD-2-Clause-Patent
+##
+{
+ "scope": "global-nix",
+ "flags": ["set_path"]
+}
diff --git a/BaseTools/BinWrappers/WindowsLike/win_build_tools_path_env.yaml b/BaseTools/BinWrappers/WindowsLike/win_build_tools_path_env.yaml new file mode 100644 index 0000000000..83f5856e75 --- /dev/null +++ b/BaseTools/BinWrappers/WindowsLike/win_build_tools_path_env.yaml @@ -0,0 +1,10 @@ +## @file
+# Add this folder to the path on Windows
+#
+# Copyright (c) Microsoft Corporation.
+# SPDX-License-Identifier: BSD-2-Clause-Patent
+##
+{
+ "scope": "global-win",
+ "flags": ["set_path"]
+}
|