Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Add conda-forge license note #150

Merged
merged 1 commit into from
Jan 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion azure/set_vs_toolchain.cmd
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
@@echo on
REM set Visual Studio toolchain given bitness, VS year and toolchain number.

REM Parts of this file copied from:
REM https://github.com/conda-forge/vc-feedstock/blob/7c0aa76218f369227d6a7fc78f981b100d68d50a/recipe/activate.bat
REM licensed as follows:
REM BSD-3-Clause
REM Copyright conda-forge contributors

IF [%1] == [] GOTO NoArgErr
set VS_BITS=%1
IF [%2] == [] GOTO NoArgErr
set VS_YEAR=%2
IF [%3] == [] GOTO NoArgErr
set VS_TOOLCHAIN=%3


REM Tools can come from any of Professional, Community, BuildTools or Enterprise install.
if not exist "%VSINSTALLDIR%" (
set "VSINSTALLDIR=%ProgramFiles(x86)%\Microsoft Visual Studio\%VS_YEAR%\Professional\"
Expand Down