aboutsummaryrefslogtreecommitdiff
path: root/export
diff options
context:
space:
mode:
Diffstat (limited to 'export')
-rw-r--r--export/Cargo.toml2
-rw-r--r--export/dev/bin/nogpadc.exebin2235392 -> 2235392 bytes
-rw-r--r--export/src/bin/export_project.rs3
3 files changed, 3 insertions, 2 deletions
diff --git a/export/Cargo.toml b/export/Cargo.toml
index 2a0cc4f..5ddc6ca 100644
--- a/export/Cargo.toml
+++ b/export/Cargo.toml
@@ -1,5 +1,5 @@
[package]
-name = "nogamepads_export"
+name = "nogamepads-export"
authors = [ "CatilGrass" ]
workspace = "../../NoGamepads"
diff --git a/export/dev/bin/nogpadc.exe b/export/dev/bin/nogpadc.exe
index e3f04ca..7795720 100644
--- a/export/dev/bin/nogpadc.exe
+++ b/export/dev/bin/nogpadc.exe
Binary files differ
diff --git a/export/src/bin/export_project.rs b/export/src/bin/export_project.rs
index f5e34eb..95b3fbe 100644
--- a/export/src/bin/export_project.rs
+++ b/export/src/bin/export_project.rs
@@ -24,6 +24,7 @@ pub struct ReleaseItem {
}
pub fn main() {
+ let version = env!("PROJECT_VERSION");
let root = PathBuf::from(env!("CARGO_MANIFEST_DIR")).parent().unwrap().to_path_buf();
let toml_config = root.join("./Config_Export.toml");
@@ -34,7 +35,7 @@ pub fn main() {
root.join("export");
let export_version_dir =
- export_root.join(env!("PROJECT_VERSION"));
+ export_root.join(version);
let target_dir =
root.join(".cargo").join("shared").join("target").join("release").join("deps");