mirror of
https://github.com/ankitects/anki.git
synced 2026-01-13 22:13:58 -05:00
10 lines
309 B
Rust
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();
|
|
}
|
|
}
|