jbogs-autopilot 0.4.0

A simple, cross-platform GUI automation library for Rust.
Documentation
1
2
3
4
5
6
7
8
extern crate pkg_config;

fn main() {
    let target_os = std::env::var("CARGO_CFG_TARGET_OS").unwrap();
    if target_os == "linux" {
        println!("cargo:rustc-flags=-l X11 -l Xtst");
    }
}