cloud_terrastodon 0.31.0

A command-line tool for interacting with cloud ecosystems
1
2
3
4
5
6
7
8
use embed_resource::CompilationResult;

fn main() {
    let target = std::env::var("TARGET").unwrap();
    if target.contains("windows") {
        let _: CompilationResult = embed_resource::compile("icon.rc", embed_resource::NONE);
    }
}