File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,10 @@ inside/outside docker.
99## Run from source
1010
11111 . Make sure you have ` Deno ` installed on your system
12- 2 . Compile to native binary
12+ 2 . Clone and compile to native binary
1313``` sh
14+ git clone https://github.com/sudheer121/dcmv.git
15+ cd dcmv
1416deno run compile
1517```
16183 . Add to $PATH
Original file line number Diff line number Diff line change 1515 "test" : " deno test -A tests" ,
1616 "fmt" : " deno fmt" ,
1717 "lint" : " deno lint" ,
18- "dev:inspect" : " deno run --watch src/main.ts"
18+ "dev:inspect" : " deno run --watch src/main.ts" ,
19+ "compile:win_x86_64" : " deno compile -A --target x86_64-pc-windows-msvc --output ./dcmv_win_x86_64.exe src/main.ts" ,
20+ "compile:mac_arm64" : " deno compile -A --target aarch64-apple-darwin --output ./dcmv_mac_arm64 src/main.ts" ,
21+ "compile:mac_x86_64" : " deno compile -A --target x86_64-apple-darwin --output ./dcmv_mac_x86_64 src/main.ts" ,
22+ "compile:linux_x86_64" : " deno compile -A --target x86_64-unknown-linux-gnu --output ./dcmv_linux_x86_64 src/main.ts" ,
23+ "compile:linux_arm64" : " deno compile -A --target aarch64-unknown-linux-gnu --output ./dcmv_linux_arm64 src/main.ts"
1924 },
2025 "imports" : {
2126 "@std/assert" : " jsr:@std/assert@1" ,
You can’t perform that action at this time.
0 commit comments