Anki/qt/launcher/build.rs
2025-06-19 13:39:46 +07:00

10 lines
309 B
Rust

// Copyright: Ankitects Pty Ltd and contributors
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
fn main() {
#[cfg(windows)]
{
embed_resource::compile("win/anki-manifest.rc", embed_resource::NONE)
.manifest_required()
.unwrap();
}
}