Files

23 lines
746 B
Plaintext
Raw Permalink Normal View History

2022-08-09 20:48:29 +10:00
---
sidebar_position: 6
---
2022-09-30 05:17:34 +08:00
# プロジェクトのコンパイル
2022-08-09 20:48:29 +10:00
2022-09-30 05:17:34 +08:00
プロジェクトディレクトリ上で、`wails build`コマンドを実行しましょう。 そうすることで、プロジェクトがコンパイルされ、`build/bin`ディレクトリ内に本番配布用のバイナリが出力されます。
2022-08-09 20:48:29 +10:00
2022-09-30 05:17:34 +08:00
バイナリを起動すると、デフォルト仕様のアプリを確認することができます:
2022-08-09 20:48:29 +10:00
2022-09-18 11:00:39 +10:00
```mdx-code-block
2022-08-09 20:48:29 +10:00
<div class="text--center">
2022-08-27 20:17:15 +10:00
<img
2022-08-29 20:04:52 +10:00
src={require("@site/static/img/defaultproject.webp").default}
2022-08-27 20:17:15 +10:00
width="50%"
class="screenshot"
/>
2022-08-09 20:48:29 +10:00
</div>
2022-08-27 20:17:15 +10:00
<br />
2022-09-18 11:00:39 +10:00
```
2022-08-09 20:48:29 +10:00
2022-09-30 05:17:34 +08:00
コンパイルオプションについて詳しくは、[CLIリファレンス](../reference/cli.mdx#build)をご覧ください。