this repo has no description
1opam-version: "2.0" 2synopsis: "Microsoft C Compiler Environment Settings (32-bit x86)" 3description: """ 4This package uses msvs-tools to find additional values required for the 5environment in order to use the x86 (32-bit) Microsoft C compiler (cl). 6 7After installation, the package's variables indicate the required values: 8- conf-msvc32:msvs-bin, conf-msvc32:msvs-inc and conf-msvc32:msvc-lib are values 9 to be added to PATH, INCLUDE and LIB respectively. In opam 2.2, they should be 10 added using x-env-path-rewrite set to false, as they contain multiple 11 directories. 12- conf-msvc32:package is the name of the Visual Studio package providing the 13 compiler (e.g. Visual Studio Community 2022) 14- conf-msvc32:ml is the name of the assembler (usually "ml") 15- conf-msvc32:script is the vcvarsall or setenv script which was queried by 16 msvs-detect to provide this information 17""" 18maintainer: "David Allsopp <david.allsopp@metastack.com>" 19authors: "David Allsopp" 20license: "BSD-3-clause" 21homepage: "https://github.com/metastack/msvs-tools#readme" 22bug-reports: "https://github.com/metastack/msvs-tools/issues" 23depends: ["msvs-detect"] 24available: os = "win32" 25flags: conf 26build: ["bash" "%{msvs-detect:share}%\\msvs-opam" "x86_32" name "%{msvs-detect:share}%\\msvs-detect"] 27post-messages: [ 28 """ 29A suitable Visual Studio installation could not be found for x86. 30Visual Studio can be obtained from https://visualstudio.microsoft.com""" 31 {failure} 32 33 """ 34The Microsoft C compiler has been located in the environment which suggests opam 35is running either from a Tools Command Prompt or from another wrapper which is 36updating the environment variables. 37 38opam has not altered these environment settings, but you will need to ensure 39that future invocations of opam are done from the same environment, or the 40compiler will be unavailable.""" 41 {success & _:msvs-bin = ""} 42]