Files
Maxim Reznik 23d10cdc9a Avoid OS environment, because libgpr2 introduced
it with a different value set. #1628
2025-03-24 13:33:03 +02:00

23 lines
843 B
TOML

name = "spawn"
description = "A simple library to spawn processes and communicate with them."
long-description = "This is Glib indepentent implementation of a spawn processes interface."
version = "24.0.0"
website = "https://github.com/AdaCore/spawn"
authors = ["AdaCore"]
licenses = "Apache-2.0 WITH LLVM-exception"
maintainers = ["Vadim Godunko <vgodunko@gmail.com>", "Max Reznik <reznikmm@gmail.com>"]
maintainers-logins = ["godunko", "reznikmm"]
project-files = ["gnat/spawn.gpr"]
tags = ["process", "launch", "pipe"]
[configuration]
disabled = true
[gpr-externals]
SPAWN_OS = ["unix", "osx", "Windows_NT"]
[gpr-set-externals.'case(os)']
linux = { SPAWN_OS = "unix" } # Compact table syntax is convenient in this case
windows = { SPAWN_OS = "Windows_NT" } # to see all enumeration values, one per row.
macos = { SPAWN_OS = "osx" }