Successfully create and load profiles, added functional gui

This commit is contained in:
2022-02-24 23:04:58 -05:00
parent e6acf71b74
commit 7f57900d9f
12 changed files with 315 additions and 59 deletions

View File

@@ -2,7 +2,10 @@
<module type="GENERAL_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$/.." />
<content url="file://$MODULE_DIR$/..">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<excludeFolder url="file://$MODULE_DIR$/target" />
</content>
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@@ -4,13 +4,10 @@ fn main() {
let mut cmd = Command::new("java");
cmd.arg("-jar");
cmd.arg("JAML.jar");
cmd.arg("JAML.jar");
match cmd.output() {
Ok(output) => {
unsafe {
println!("Output: {}", String::from_utf8_unchecked(output.stdout));
}
},
Err(e) => {
println!("{}", e);