-
João Magalhães authored
This makes it possible to run Boytacean in Ubuntu using dynamic linking with the native SDL libraries.
João Magalhães authoredThis makes it possible to run Boytacean in Ubuntu using dynamic linking with the native SDL libraries.
This project manages its dependencies using Cargo.
Learn more
Cargo.toml 838 B
[package]
name = "boytacean-sdl"
version = "0.6.12"
authors = ["João Magalhães <joamag@gmail.com>"]
description = "An SDL frontend for Boytacen"
license = "Apache-2.0"
keywords = ["gameboy", "emulator", "rust", "sdl"]
edition = "2018"
[dependencies.boytacean]
path = "../.."
[dependencies.sdl2]
sdl2 = { version = "0.35", features = ["ttf", "image", "gfx", "mixer", "static-link", "use-vcpkg"] }
[target.'cfg(linux)'.dependencies]
sdl2 = { version = "0.35", features = ["ttf", "image", "gfx", "mixer", "bundled"] }
[package.metadata.vcpkg]
dependencies = ["sdl2", "sdl2-image[libjpeg-turbo,tiff,libwebp]", "sdl2-ttf", "sdl2-gfx", "sdl2-mixer"]
git = "https://github.com/microsoft/vcpkg"
rev = "261c458af6e3eed5d099144aff95d2b5035f656b"
[package.metadata.vcpkg.target]
x86_64-pc-windows-msvc = { triplet = "x64-windows-static-md" }