33 lines
566 B
TOML
33 lines
566 B
TOML
[build]
|
|
type = "cmake"
|
|
|
|
[build.flags]
|
|
build_dir = "build"
|
|
configure = [
|
|
"-DCPPDAP_USE_EXTERNAL_NLOHMANN_JSON_PACKAGE=ON",
|
|
"-DBUILD_SHARED_LIBS=ON",
|
|
]
|
|
|
|
[dependencies]
|
|
build = [
|
|
"cmake",
|
|
"nlohmann-json"
|
|
]
|
|
runtime = [
|
|
"libunwind",
|
|
"glibc",
|
|
"libcxx",
|
|
]
|
|
|
|
[package]
|
|
description = "C++ library for the Debug Adapter Protocol"
|
|
homepage = "https://github.com/google/cppdap"
|
|
license = "Apache-2.0"
|
|
name = "cppdap"
|
|
version = "1.58.0"
|
|
|
|
[[source]]
|
|
extract_dir = "$name-$version"
|
|
url = "https://github.com/google/cppdap#dap-$version-a"
|
|
sha256 = "skip"
|