File tree 1 file changed +22
-6
lines changed
1 file changed +22
-6
lines changed Original file line number Diff line number Diff line change @@ -31,18 +31,34 @@ Currently [cargo bundle](https://github.com/burtonageo/cargo-bundle) only suppor
31
31
bundles [ see github issue] ( https://github.com/burtonageo/cargo-bundle/issues/77 ) .
32
32
As a work-around we can use [ cargo wix] ( https://github.com/volks73/cargo-wix ) to create a windows installer.
33
33
34
- On Linux first install the following:
34
+ #### Ubuntu
35
35
36
36
``` sh
37
37
sudo apt-get install libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libxkbcommon-dev libssl-dev
38
+ cargo install cargo-bundle
39
+ cargo bundle
40
+ ```
41
+ #### Debian
42
+
43
+ ``` sh
44
+ sudo apt-get install libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libxkbcommon-dev libssl-dev libudev-dev
45
+ cargo install cargo-bundle
46
+ cargo bundle
47
+ ```
48
+
49
+ #### macOS
50
+
51
+ ``` sh
52
+ cargo install cargo-bundle
53
+ cargo bundle
38
54
```
39
55
40
- After downloading
41
- ``` cargo install cargo-bundle ``` on linux and macOS or ``` cargo install cargo-wix ``` on windows
42
- run
43
- ``` cargo bundle ``` on linux and macOS or ``` cargo wix ``` on windows to create platform-executable bundles.
56
+ #### Windows
44
57
45
- It can be compiled and run on all platforms.
58
+ ``` sh
59
+ cargo install cargo-wix
60
+ cargo wix
61
+ ```
46
62
47
63
## Features:
48
64
You can’t perform that action at this time.
0 commit comments