autopilot 0.3.0

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

#[cfg(target_os = "macos")]
fn main() {}

#[cfg(target_os = "windows")]
fn main() {}

#[cfg(target_os = "linux")]
fn main() {
    println!("cargo:rustc-flags=-l X11 -l Xtst");
}