@@ -43,26 +43,26 @@ Tip: You can automate downloading using `wget`, `curl`, or other similar tools.
43
43
44
44
### Executable
45
45
46
- Download the executable for your platform from [ here] ( https://github.com/aminya/setup-cpp/releases/tag/v0.5.1 ) , and run it with the available options.
46
+ Download the executable for your platform from [ here] ( https://github.com/aminya/setup-cpp/releases/tag/v0.5.2 ) , and run it with the available options.
47
47
48
48
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
49
49
50
50
``` ps1
51
51
# windows example (open shell as admin)
52
- curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.1 /setup_cpp_windows.exe"
52
+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.2 /setup_cpp_windows.exe"
53
53
./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
54
54
```
55
55
56
56
``` ps1
57
57
# linux example
58
- wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.1 /setup_cpp_linux"
58
+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.2 /setup_cpp_linux"
59
59
chmod +x setup_cpp_linux
60
60
sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
61
61
```
62
62
63
63
``` ps1
64
64
# mac example
65
- wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.1 /setup_cpp_mac"
65
+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.2 /setup_cpp_mac"
66
66
chmod +x setup_cpp_mac
67
67
sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
68
68
```
@@ -72,22 +72,22 @@ For the tools, instead of `true` that chooses the default version, you can pass
72
72
73
73
### With Nodejs
74
74
75
- Download the ` setup_cpp.js ` file form [ here] ( https://github.com/aminya/setup-cpp/releases/download/v0.5.1 /setup_cpp.js ) , and run it with the available options.
75
+ Download the ` setup_cpp.js ` file form [ here] ( https://github.com/aminya/setup-cpp/releases/download/v0.5.2 /setup_cpp.js ) , and run it with the available options.
76
76
77
77
On Windows:
78
78
79
79
Open the shell as admin, download via ` curl ` , then install
80
80
81
81
``` ps1
82
82
# open shell as admin
83
- curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.1 /setup_cpp.js"
83
+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.2 /setup_cpp.js"
84
84
node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
85
85
```
86
86
87
87
On Linux or Mac:
88
88
89
89
``` ps1
90
- wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.1 /setup_cpp.js"
90
+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.2 /setup_cpp.js"
91
91
sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
92
92
```
93
93
@@ -162,7 +162,7 @@ WORKDIR "/"
162
162
RUN apt-get update -qq
163
163
RUN apt-get install -y --no-install-recommends apt-utils
164
164
RUN apt-get install -y --no-install-recommends ca-certificates wget unzip
165
- RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.5.1 /setup_cpp_linux"
165
+ RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.5.2 /setup_cpp_linux"
166
166
RUN chmod +x ./setup_cpp_linux
167
167
168
168
# install llvm, cmake, ninja, and ccache
0 commit comments