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