Skip to content
Update Rust authored by Miki, Hiromitsu's avatar Miki, Hiromitsu
...@@ -101,13 +101,6 @@ GNU 版のバイナリ (GNU ABI) の場合、windres.exe を使用してリソ ...@@ -101,13 +101,6 @@ GNU 版のバイナリ (GNU ABI) の場合、windres.exe を使用してリソ
MSVC 版のバイナリ (MSVC ABI) の場合、手順が異なる。rc.exe を使うらしい。 MSVC 版のバイナリ (MSVC ABI) の場合、手順が異なる。rc.exe を使うらしい。
[Cargo.toml]
```toml
[package]
...
build = "build.rs"
```
[build.rs] [build.rs]
```rs ```rs
use std::{ use std::{
... ...
......