1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
use structopt::StructOpt;
#[derive(Debug, StructOpt)]
struct Cli {
/// fpm command
command: String,
}
fn collect_source_files() -> Vec<std::path::PathBuf> {
let mut files: Vec<std::path::PathBuf> = Vec::new();
for entry in std::fs::read_dir(".").unwrap() {
let entry = entry.unwrap();
let path = entry.path();
if !path.is_dir() {
let ext = match path.extension() {
None => "None",
Some(ext) => ext.to_str().unwrap(),
};
if ext == "f90" {
files.push(path);
}
}
}
files
}
fn build() {
let files = collect_source_files();
let mut files2: String = String::new();
for file in &files {
println!("File: {}", file.to_str().unwrap());
if !file.to_str().unwrap().ends_with("main.f90") {
files2 = files2 + " " + file.to_str().unwrap();
}
}
println!("Files: {:?}", files);
let s = format!("\
cmake_minimum_required(VERSION 3.5.0 FATAL_ERROR)
enable_language(Fortran)
project(p1)
add_executable(p1 main.f90 {})
", files2);
std::fs::write("CMakeLists.txt", s).unwrap();
let output = std::process::Command::new("cmake")
.args(&["-B", "build", "."])
.output().unwrap();
println!("status: {}", output.status);
println!("stdout: {}", String::from_utf8_lossy(&output.stdout));
println!("stderr: {}", String::from_utf8_lossy(&output.stderr));
if !output.status.success() {
panic!("Command failed.")
}
let output = std::process::Command::new("cmake")
.args(&["--build", "build"])
.output().unwrap();
println!("status: {}", output.status);
println!("stdout: {}", String::from_utf8_lossy(&output.stdout));
println!("stderr: {}", String::from_utf8_lossy(&output.stderr));
if !output.status.success() {
panic!("Command failed.")
}
}
fn run() {
let output = std::process::Command::new("build/p1")
.output().unwrap();
println!("status: {}", output.status);
println!("stdout: {}", String::from_utf8_lossy(&output.stdout));
println!("stderr: {}", String::from_utf8_lossy(&output.stderr));
if !output.status.success() {
panic!("Command failed.")
}
}
fn main() {
let args = Cli::from_args();
println!("{:?}", args);
if args.command == "build" {
println!("Command: build");
build();
} else if args.command == "run" {
println!("Command: run");
build();
run();
} else {
panic!("Unknown command");
}
}
|