README was missing features added since v0.6.1 (GPU blur, journal logging, lock-first architecture, PAM timeout, fprintd sender validation, progressive faillock). build.rs comment still referenced removed wallpaper.jpg.
14 lines
374 B
Rust
14 lines
374 B
Rust
// ABOUTME: Build script for compiling GResource bundle.
|
|
// ABOUTME: Bundles style.css and default-avatar.svg into the binary.
|
|
|
|
fn main() {
|
|
glib_build_tools::compile_resources(
|
|
&["resources"],
|
|
"resources/resources.gresource.xml",
|
|
"moonlock.gresource",
|
|
);
|
|
|
|
// Link libpam for PAM authentication
|
|
println!("cargo:rustc-link-lib=pam");
|
|
}
|