diff options
| author | 1992414357@qq.com <1992414357@qq.com> | 2025-05-29 16:06:11 +0800 |
|---|---|---|
| committer | 1992414357@qq.com <1992414357@qq.com> | 2025-05-29 16:06:11 +0800 |
| commit | c9dbba0d288becb7f05cebe526be25c76e5a850a (patch) | |
| tree | d5a47ccfc439e91f6fd1bfac2712a67e16468e1e /export | |
| parent | d1c42b3f4036f101a7a6e46dcf2f065ed1d687f3 (diff) | |
增加客户端部分
Diffstat (limited to 'export')
| -rw-r--r-- | export/Cargo.toml | 2 | ||||
| -rw-r--r-- | export/dev/bin/nogpadc.exe | bin | 2235392 -> 2235392 bytes | |||
| -rw-r--r-- | export/src/bin/export_project.rs | 3 |
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 Binary files differindex e3f04ca..7795720 100644 --- a/export/dev/bin/nogpadc.exe +++ b/export/dev/bin/nogpadc.exe 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"); |
