Successfully create and load profiles, added functional gui
This commit is contained in:
@@ -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>
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user