@@ -40,26 +40,26 @@ Tip: You can automate downloading using `wget`, `curl` or other similar tools.
40
40
41
41
### Executable
42
42
43
- Download the executable for your platform from [ here] ( https://github.com/aminya/setup-cpp/releases/tag/v0.2.1 ) , and run it with the available options.
43
+ Download the executable for your platform from [ here] ( https://github.com/aminya/setup-cpp/releases/tag/v0.2.2 ) , and run it with the available options.
44
44
45
45
An example that installs llvm, cmake, ninja, ccache, and conan:
46
46
47
47
``` ps1
48
48
# windows example (open shell as admin)
49
- curl -O "https://github.com/aminya/setup-cpp/releases/download/v0.2.1 /setup_cpp_windows.exe"
49
+ curl -O "https://github.com/aminya/setup-cpp/releases/download/v0.2.2 /setup_cpp_windows.exe"
50
50
./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --conan true
51
51
```
52
52
53
53
``` ps1
54
54
# linux example
55
- wget "https://github.com/aminya/setup-cpp/releases/download/v0.2.1 /setup_cpp_linux"
55
+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.2.2 /setup_cpp_linux"
56
56
chmod +x setup_cpp_linux
57
57
sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --conan true
58
58
```
59
59
60
60
``` ps1
61
61
# mac example
62
- wget "https://github.com/aminya/setup-cpp/releases/download/v0.2.1 /setup_cpp_mac"
62
+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.2.2 /setup_cpp_mac"
63
63
chmod +x setup_cpp_mac
64
64
sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --conan true
65
65
```
@@ -69,20 +69,20 @@ For the tools, instead of `true`, which chooses the default version, you can pas
69
69
70
70
### With Nodejs
71
71
72
- Download the ` setup_cpp.js ` file form [ here] ( https://github.com/aminya/setup-cpp/releases/download/v0.2.1 /setup_cpp.js ) , and run it with the available options.
72
+ Download the ` setup_cpp.js ` file form [ here] ( https://github.com/aminya/setup-cpp/releases/download/v0.2.2 /setup_cpp.js ) , and run it with the available options.
73
73
74
74
On Windows
75
75
76
76
``` ps1
77
77
# open shell as admin
78
- curl "https://github.com/aminya/setup-cpp/releases/download/v0.2.1 /setup_cpp.js"
78
+ curl "https://github.com/aminya/setup-cpp/releases/download/v0.2.2 /setup_cpp.js"
79
79
node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --conan true
80
80
```
81
81
82
82
On Linux or Mac:
83
83
84
84
``` ps1
85
- wget "https://github.com/aminya/setup-cpp/releases/download/v0.2.1 /setup_cpp.js"
85
+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.2.2 /setup_cpp.js"
86
86
sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --conan true
87
87
```
88
88
@@ -141,7 +141,7 @@ WORKDIR "/"
141
141
RUN apt-get update -qq
142
142
RUN apt-get install -y --no-install-recommends apt-utils
143
143
RUN apt-get install -y --no-install-recommends ca-certificates wget unzip
144
- RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.2.1 /setup_cpp_linux"
144
+ RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.2.2 /setup_cpp_linux"
145
145
RUN chmod +x ./setup_cpp_linux
146
146
147
147
# install llvm, cmake, ninja, ccache, and conan
0 commit comments