mirror of https://github.com/Tim-Paik/neutauri.git
1.1 KiB
1.1 KiB
Neutauri
施工中...
编译指南
Linux
依赖安装
Archlinux:
$ sudo pacman -Syu
$ sudo pacman -S --needed webkit2gtk base-devel curl wget openssl gtk3
编译
$ git clone https://github.com/Tim-Paik/neutauri.git
$ cd neutauri
$ cargo build --release --bin neutauri_runtime
$ cargo build --release --bin neutauri_bundler
然后你可以在 target/release
目录下找到 neutauri_bundler
可执行文件。
Windows
依赖安装
你需要安装 Visual Studio 来使用 Rust,请自行安装。
编译
PS C:\SomePath> git clone https://github.com/Tim-Paik/neutauri.git
PS C:\SomePath> cd .\neutauri\
PS C:\SomePath> cargo build --release --bin neutauri_runtime
PS C:\SomePath> cargo build --release --bin neutauri_bundler
然后你可以在 .\target\release\
文件夹下找到 neutauri_bundler.exe
可执行文件。