this repo has no description
1opam-version: "2.0" 2synopsis: "Microsoft C Compiler OCaml Runtime Dependency (32-bit)" 3description: """ 4This package is an internal part of the implementation of the OCaml compiler in 5opam-repository. It is used to store the active environment variable settings 6for Microsoft Visual Studio and adds them to the environment. 7""" 8maintainer: "David Allsopp <david@tarides.com>" 9authors: "David Allsopp" 10license: "CC0-1.0+" 11homepage: "https://opam.ocaml.org" 12bug-reports: "https://github.com/ocaml/opam-repository/issues" 13# opam-repository mandates 2.2.0+ when setenv may perform `+= ""`, since some 14# versions of 2.0.x and 2.1.x crash on these updates. 15available: opam-version >= "2.2.0~" 16depends: [ 17 "host-system-msvc" {post} 18 "host-arch-x86_32" {post} 19 "conf-msvc32" 20] 21conflict-class: "ocaml-env-msvc" 22# This package is marked avoid-version because opam 2.x's depext system has no 23# way of detecting Microsoft Visual Studio, but it can install the mingw-w64 24# compilers. It is intended to address this as part of opam 3.x. 25flags: [conf avoid-version] 26build: [ 27 ["xcopy" "%{conf-msvc32:share}%\\conf-msvc32.config" "%{_:name}%.config*"] 28] 29setenv: [ 30 [PATH += "%{_:msvs-bin}%"] 31 [INCLUDE += "%{_:msvs-inc}%"] 32 [LIB += "%{_:msvs-lib}%"] 33] 34x-env-path-rewrite: [ 35 [ PATH false ] 36 [ INCLUDE false ] 37 [ LIB false ] 38]