@@ -51,21 +51,21 @@ Tip: You can automate downloading using `wget`, `curl`, or other similar tools.
51
51
52
52
### Executable
53
53
54
- Download the executable for your platform from [ here] ( https://github.com/aminya/setup-cpp/releases/tag/v0.8 .0 ) , and run it with the available options.
54
+ Download the executable for your platform from [ here] ( https://github.com/aminya/setup-cpp/releases/tag/v0.9 .0 ) , and run it with the available options.
55
55
56
56
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
57
57
58
58
``` ps1
59
59
# windows example (open shell as admin)
60
- curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.8 .0/setup_cpp_windows.exe"
60
+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.9 .0/setup_cpp_windows.exe"
61
61
./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
62
62
63
63
RefreshEnv.cmd # reload the environment
64
64
```
65
65
66
66
``` ps1
67
67
# linux example
68
- wget "https://github.com/aminya/setup-cpp/releases/download/v0.8 .0/setup_cpp_linux"
68
+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.9 .0/setup_cpp_linux"
69
69
chmod +x setup_cpp_linux
70
70
sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
71
71
@@ -74,7 +74,7 @@ source ~/.profile # reload the environment
74
74
75
75
``` ps1
76
76
# mac example
77
- wget "https://github.com/aminya/setup-cpp/releases/download/v0.8 .0/setup_cpp_mac"
77
+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.9 .0/setup_cpp_mac"
78
78
chmod +x setup_cpp_mac
79
79
sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
80
80
@@ -88,15 +88,15 @@ NOTE: you will not need `sudo` if you are already a root user (e.g., in a GitLab
88
88
89
89
### With Nodejs
90
90
91
- Download the ` setup_cpp.js ` file form [ here] ( https://github.com/aminya/setup-cpp/releases/download/v0.8 .0/setup_cpp.js ) , and run it with the available options.
91
+ Download the ` setup_cpp.js ` file form [ here] ( https://github.com/aminya/setup-cpp/releases/download/v0.9 .0/setup_cpp.js ) , and run it with the available options.
92
92
93
93
On Windows:
94
94
95
95
Open the shell as admin, download via ` curl ` , then install
96
96
97
97
``` ps1
98
98
# open shell as admin
99
- curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.8 .0/setup_cpp.js"
99
+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.9 .0/setup_cpp.js"
100
100
node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
101
101
102
102
RefreshEnv.cmd # reload the environment
@@ -105,7 +105,7 @@ RefreshEnv.cmd # reload the environment
105
105
On Linux or Mac:
106
106
107
107
``` ps1
108
- wget "https://github.com/aminya/setup-cpp/releases/download/v0.8 .0/setup_cpp.js"
108
+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.9 .0/setup_cpp.js"
109
109
sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
110
110
111
111
source ~/.profile # reload the environment
@@ -184,7 +184,7 @@ FROM debian:bullseye
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.8 .0/setup_cpp_linux"
187
+ RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.9 .0/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.8 .0/setup_cpp_linux"
266
+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.9 .0/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