@@ -52,21 +52,21 @@ Tip: You can automate downloading using `wget`, `curl`, or other similar tools.
52
52
53
53
### Executable
54
54
55
- Download the executable for your platform from [ here] ( https://github.com/aminya/setup-cpp/releases/tag/v0.9.3 ) , and run it with the available options.
55
+ Download the executable for your platform from [ here] ( https://github.com/aminya/setup-cpp/releases/tag/v0.9.4 ) , and run it with the available options.
56
56
57
57
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
58
58
59
59
``` ps1
60
60
# windows example (open shell as admin)
61
- curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.9.3 /setup_cpp_windows.exe"
61
+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.9.4 /setup_cpp_windows.exe"
62
62
./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
63
63
64
64
RefreshEnv.cmd # reload the environment
65
65
```
66
66
67
67
``` ps1
68
68
# linux example
69
- wget "https://github.com/aminya/setup-cpp/releases/download/v0.9.3 /setup_cpp_linux"
69
+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.9.4 /setup_cpp_linux"
70
70
chmod +x setup_cpp_linux
71
71
sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
72
72
@@ -75,7 +75,7 @@ source ~/.profile # reload the environment
75
75
76
76
``` ps1
77
77
# mac example
78
- wget "https://github.com/aminya/setup-cpp/releases/download/v0.9.3 /setup_cpp_mac"
78
+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.9.4 /setup_cpp_mac"
79
79
chmod +x setup_cpp_mac
80
80
sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
81
81
@@ -89,15 +89,15 @@ NOTE: you will not need `sudo` if you are already a root user (e.g., in a GitLab
89
89
90
90
### With Nodejs
91
91
92
- Download the ` setup_cpp.js ` file form [ here] ( https://github.com/aminya/setup-cpp/releases/download/v0.9.3 /setup_cpp.js ) , and run it with the available options.
92
+ Download the ` setup_cpp.js ` file form [ here] ( https://github.com/aminya/setup-cpp/releases/download/v0.9.4 /setup_cpp.js ) , and run it with the available options.
93
93
94
94
On Windows:
95
95
96
96
Open the shell as admin, download via ` curl ` , then install
97
97
98
98
``` ps1
99
99
# open shell as admin
100
- curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.9.3 /setup_cpp.js"
100
+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.9.4 /setup_cpp.js"
101
101
node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
102
102
103
103
RefreshEnv.cmd # reload the environment
@@ -106,7 +106,7 @@ RefreshEnv.cmd # reload the environment
106
106
On Linux or Mac:
107
107
108
108
``` ps1
109
- wget "https://github.com/aminya/setup-cpp/releases/download/v0.9.3 /setup_cpp.js"
109
+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.9.4 /setup_cpp.js"
110
110
sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
111
111
112
112
source ~/.profile # reload the environment
@@ -184,7 +184,7 @@ FROM ubuntu:devel
184
184
WORKDIR "/"
185
185
RUN apt-get update -qq
186
186
RUN apt-get install -y --no-install-recommends wget
187
- RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.9.3 /setup_cpp_linux"
187
+ RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.9.4 /setup_cpp_linux"
188
188
RUN chmod +x ./setup_cpp_linux
189
189
190
190
# install llvm, cmake, ninja, and ccache
@@ -263,7 +263,7 @@ stages:
263
263
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
264
264
265
265
.setup_cpp : &setup_cpp |
266
- curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.9.3 /setup_cpp_linux"
266
+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.9.4 /setup_cpp_linux"
267
267
chmod +x setup_cpp_linux
268
268
./setup_cpp_linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
269
269
source ~/.profile
0 commit comments