File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -46,9 +46,9 @@ This generator clones JUCE from [https://github.com/juce-framework/JUCE](https:/
4646``` bash
4747deno run --allow-read --allow-write --allow-run --allow-net --allow-env \
4848 https://raw.githubusercontent.com/cocotone/deno-juce-project-generator/main/generator/generate.ts \
49- --name " MySynth " \
49+ --name " MyAudioPlugin " \
5050 --author " Your Name" \
51- --output ./my-synth \
51+ --output ./my-audio-plugin \
5252 --with-git
5353```
5454
@@ -57,13 +57,13 @@ Or with short flags:
5757``` bash
5858deno run -A \
5959 https://raw.githubusercontent.com/cocotone/deno-juce-project-generator/main/generator/generate.ts \
60- -n " MySynth " -a " Your Name" -o ./my-synth --with-git
60+ -n " MyAudioPlugin " -a " Your Name" -o ./my-audio-plugin --with-git
6161```
6262
6363### Build and Run
6464
6565``` bash
66- cd my-synth
66+ cd my-audio-plugin
6767deno task build # Build in Release mode
6868deno task run # Run the Standalone app
6969```
@@ -196,16 +196,16 @@ JUCEを使ったオーディオプラグイン開発には、従来いくつか
196196``` bash
197197deno run --allow-read --allow-write --allow-run --allow-net --allow-env \
198198 https://raw.githubusercontent.com/cocotone/deno-juce-project-generator/main/generator/generate.ts \
199- --name " MySynth " \
199+ --name " MyAudioPlugin " \
200200 --author " Your Name" \
201- --output ./my-synth \
201+ --output ./my-audio-plugin \
202202 --with-git
203203```
204204
205205### ビルドと実行
206206
207207``` bash
208- cd my-synth
208+ cd my-audio-plugin
209209deno task build # Releaseモードでビルド
210210deno task run # Standaloneアプリを実行
211211```
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ <h3>Step 2: Generate a Plugin Project</h3>
106106 </ div >
107107
108108 < h3 > Step 3: Build & Run</ h3 >
109- < pre > < code class ="language-bash "> cd my-synth
109+ < pre > < code class ="language-bash "> cd my-audio-plugin
110110deno task build # Build the plugin
111111deno task run # Run the Standalone app</ code > </ pre >
112112 </ section >
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ <h3>Step 2: プラグインプロジェクトを生成</h3>
106106 </ div >
107107
108108 < h3 > Step 3: ビルド & 実行</ h3 >
109- < pre > < code class ="language-bash "> cd my-synth
109+ < pre > < code class ="language-bash "> cd my-audio-plugin
110110deno task build # プラグインをビルド
111111deno task run # Standaloneアプリを実行</ code > </ pre >
112112 </ section >
You can’t perform that action at this time.
0 commit comments