summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorp01arst0rm <polar@ever3st.com>2022-12-06 20:05:38 +0000
committerRick Gibbed <rick@gibbed.us>2022-12-28 14:17:24 -0600
commita1bb6cc142c26e4c815e2bb85cf836765e7810a1 (patch)
tree55b612c70beb4520eb1d0034ff0b0f4090c60d3b /tools
parent859bb895553d82a34396afffd0b6d775b850243b (diff)
moved vswhere to tools directory
Diffstat (limited to 'tools')
-rw-r--r--tools/build/premake2
-rw-r--r--tools/vswhere/LICENSE.txt20
-rw-r--r--tools/vswhere/vswhere.exebin0 -> 458336 bytes
3 files changed, 21 insertions, 1 deletions
diff --git a/tools/build/premake b/tools/build/premake
index b77d042ae..b9f423dee 100644
--- a/tools/build/premake
+++ b/tools/build/premake
@@ -213,7 +213,7 @@ def import_vs_environment():
install_path = None
env_tool_args = None
- vswhere = subprocess.check_output('third_party/vswhere/vswhere.exe -version "[15,)" -latest -format json -utf8', shell=False, universal_newlines=True, encoding="utf-8")
+ vswhere = subprocess.check_output('tools/vswhere/vswhere.exe -version "[15,)" -latest -format json -utf8', shell=False, universal_newlines=True, encoding="utf-8")
if vswhere:
vswhere = json.loads(vswhere)
if vswhere and len(vswhere) > 0:
diff --git a/tools/vswhere/LICENSE.txt b/tools/vswhere/LICENSE.txt
new file mode 100644
index 000000000..0048812bf
--- /dev/null
+++ b/tools/vswhere/LICENSE.txt
@@ -0,0 +1,20 @@
+The MIT License (MIT)
+Copyright (C) Microsoft Corporation. All rights reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE. \ No newline at end of file
diff --git a/tools/vswhere/vswhere.exe b/tools/vswhere/vswhere.exe
new file mode 100644
index 000000000..096d016fb
--- /dev/null
+++ b/tools/vswhere/vswhere.exe
Binary files differ