一个用来调用别的gui/控制台程序的 rust 小玩具 (暂时放在这里是因为GitHub访问起来实在不大方便)
Go to file
2024-01-25 21:24:03 +08:00
.github add build test 2024-01-25 21:24:03 +08:00
src add build test 2024-01-25 21:24:03 +08:00
.gitignore 我决定先init 2024-01-21 17:31:12 +08:00
build.rs 修复了一点小问题 2024-01-23 01:00:35 +08:00
Cargo.lock bump 1.1.0 2024-01-23 00:51:22 +08:00
Cargo.toml bump 1.1.0 2024-01-23 00:51:22 +08:00
readme.md 使用说明++ 2024-01-23 01:15:08 +08:00
run.conf 添加一些说明( 2024-01-21 22:23:25 +08:00

wrapper-rs

这是一个用 rust 写的, 用于让 Nuitka 打包出来的东西也可以像 pyinstaller 一样能文件夹结构干净一些的小东西

使用说明

把你的 Nuitka 打包出来的东西 (xxx.dist) 改个名字, 叫作 lib

把你的主程序改个名字, 叫作 main.exe

整理一下文件夹结构

call.exe
lib/
    main.exe
    你的其他所有东西

让你的用户直接使用 call.exe 即可

详细一些的用法说明

run.conf

# 这是一个范例

# 除了 true 都会被认为是 false
show_console = true

# 就是 chdir (默认 ./lib)
chdir = ../lib

# 运行的可执行文件名称 (默认 ./main)
bin = ./main

# 运行的参数 (默认 "")
arg = aaa
call [选项] [--] [参数]
选项:
    --hide      隐藏控制台窗口 (默认)
    --show      显示控制台窗口
    --chdir=xxx 切换工作目录到 xxx
    --bin=xxx   指定可执行文件
    --config=xxx 指定配置文件
    --help      输出这一堆东西(根据系统语言)
    --help-zh   输出这一堆东西
    --help-en   输出这一堆东西(但是英文)
默认:
    隐藏控制台
    切换工作目录到 ./lib
    运行 ./main
call [options] [--] [arguments]
Options:
    --hide      Hide console window (default)
    --show      Show console window
    --chdir=xxx Change working directory to xxx
    --bin=xxx   Specify executable file
    --config=xxx Specify configuration file
    --help      Print this help message(based on system language)
    --help-zh   Print this help message(but in Chinese)
    --help-en   Print this help message
Defaults:
    hide console
    chdir ./lib
    run ./main