39 lines
607 B
TOML
39 lines
607 B
TOML
[build]
|
|
type = "cmake"
|
|
|
|
[build.flags]
|
|
build_dir = "build"
|
|
configure = [
|
|
"-DBUILD_SHARED_LIBS=ON",
|
|
"-Wno-dev",
|
|
"-G Ninja",
|
|
]
|
|
|
|
[dependencies]
|
|
build = [
|
|
"cmake",
|
|
"mkdocs",
|
|
"mkdocs-material",
|
|
"mkdocstrings",
|
|
"ninja",
|
|
"npm",
|
|
"python-pymdown-extensions",
|
|
"python-regex",
|
|
]
|
|
runtime = [
|
|
"glibc",
|
|
"libunwind",
|
|
"libcxx",
|
|
]
|
|
|
|
[package]
|
|
description = "Open-source formatting library for C++"
|
|
homepage = "https://fmt.dev/"
|
|
license = "MIT"
|
|
name = "fmt"
|
|
version = "12.1.0"
|
|
|
|
[[source]]
|
|
extract_dir = "$name-$version"
|
|
url = "https://github.com/fmtlib/fmt.git#$version"
|