mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-12-02 02:39:16 +08:00
2081113bed
Signed-off-by: fufesou <shuanglongchen@yeah.net>
24 lines
600 B
Rust
24 lines
600 B
Rust
extern crate simple_rc;
|
|
|
|
use simple_rc::*;
|
|
|
|
fn main() {
|
|
{
|
|
const CONF_FILE: &str = "simple_rc.toml";
|
|
generate(CONF_FILE).unwrap();
|
|
}
|
|
|
|
{
|
|
generate_with_conf(&Config {
|
|
outfile: "src/rc.rs".to_owned(),
|
|
confs: vec![ConfigItem {
|
|
inc: "D:/projects/windows/RustDeskTempTopMostWindow/x64/Release/xxx".to_owned(),
|
|
// exc: vec!["*.dll".to_owned(), "*.exe".to_owned()],
|
|
exc: vec![],
|
|
suppressed_front: "D:/projects/windows".to_owned(),
|
|
}],
|
|
})
|
|
.unwrap();
|
|
}
|
|
}
|