mirror of
https://github.com/redstrate/Physis.git
synced 2025-04-25 13:57:45 +00:00
These are giant dependencies that for some reason pull in winapi(???) and we actually don't need all of their features. Criterion can be replaced with brunch, a minimalist alternative. walkdir is replaced with a single function. system-dep can be replaced with a single line. Eventually I would like to make it a little bit more than one line, but that's all we need for now.
8 lines
212 B
Rust
8 lines
212 B
Rust
// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
fn main() {
|
|
#[cfg(feature = "game_install")]
|
|
println!("cargo::rustc-link-lib=unshield");
|
|
}
|
|
|