mirror of
https://github.com/slint-ui/slint.git
synced 2025-12-23 09:19:32 +00:00
24 lines
826 B
TOML
24 lines
826 B
TOML
[package]
|
|
name = "sixtyfps-cpp"
|
|
version = "0.0.5"
|
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0-only"
|
|
description = "SixtyFPS C++ integration"
|
|
repository = "https://github.com/sixtyfpsui/sixtyfps"
|
|
homepage = "https://sixtyfps.io"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
crate-type = ["lib", "cdylib"]
|
|
|
|
[features]
|
|
# In the future, this shouldn't be a default feature, but should be enabled by cmake
|
|
default = ["sixtyfps-interpreter"]
|
|
|
|
[dependencies]
|
|
sixtyfps-corelib = { version = "=0.0.5", path="../../sixtyfps_runtime/corelib", features = ["ffi"] }
|
|
sixtyfps-rendering-backend-default = { version = "=0.0.5", path="../../sixtyfps_runtime/rendering_backends/default" }
|
|
sixtyfps-interpreter = { version = "=0.0.5", path="../../sixtyfps_runtime/interpreter", features = ["ffi"], optional = true }
|
|
|