Fixed bug causing PROJECT_NAME to be empty

unstable
penguin 4 years ago
parent 82f48dc8ab
commit cba83ac5e1

1
.gitignore vendored

@ -1,4 +1,3 @@
/target
**/*.rs.bk
README.md.temp
GTAGS

@ -235,20 +235,7 @@ impl IglooPrj
.unwrap();
//
writeln!(app_file, "# ePenguin Generated Variables").unwrap();
// Get our knowns out of the way
match target.make_manifest.get("PROJECT_NAME")
{
None =>
{
println!("PROJECT_NAME not found");
}
Some(v) =>
{
write!(app_file, "PROJECT_NAME=").unwrap();
writeln!(app_file, "{}", v.to_string()).unwrap();
},
}
writeln!(app_file, "PROJECT_NAME={}", self.name);
match target.make_manifest.get("TOOLCHAIN")
{

Binary file not shown.
Loading…
Cancel
Save