@@ -43,21 +43,21 @@ 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.7 ) , 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.8 ) , 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.7 /setup_cpp_windows.exe"
52
+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.8 /setup_cpp_windows.exe"
53
53
./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
54
54
55
55
RefreshEnv.cmd # reload the environment
56
56
```
57
57
58
58
``` ps1
59
59
# linux example
60
- wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.7 /setup_cpp_linux"
60
+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.8 /setup_cpp_linux"
61
61
chmod +x setup_cpp_linux
62
62
sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
63
63
@@ -66,7 +66,7 @@ source ~/.profile # reload the environment
66
66
67
67
``` ps1
68
68
# mac example
69
- wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.7 /setup_cpp_mac"
69
+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.8 /setup_cpp_mac"
70
70
chmod +x setup_cpp_mac
71
71
sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
72
72
@@ -80,15 +80,15 @@ NOTE: you will not need `sudo` if you are already a root user (e.g., in a GitLab
80
80
81
81
### With Nodejs
82
82
83
- Download the ` setup_cpp.js ` file form [ here] ( https://github.com/aminya/setup-cpp/releases/download/v0.5.7 /setup_cpp.js ) , and run it with the available options.
83
+ Download the ` setup_cpp.js ` file form [ here] ( https://github.com/aminya/setup-cpp/releases/download/v0.5.8 /setup_cpp.js ) , and run it with the available options.
84
84
85
85
On Windows:
86
86
87
87
Open the shell as admin, download via ` curl ` , then install
88
88
89
89
``` ps1
90
90
# open shell as admin
91
- curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.7 /setup_cpp.js"
91
+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.8 /setup_cpp.js"
92
92
node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
93
93
94
94
RefreshEnv.cmd # reload the environment
@@ -97,7 +97,7 @@ RefreshEnv.cmd # reload the environment
97
97
On Linux or Mac:
98
98
99
99
``` ps1
100
- wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.7 /setup_cpp.js"
100
+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.8 /setup_cpp.js"
101
101
sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
102
102
103
103
source ~/.profile # reload the environment
@@ -174,7 +174,7 @@ FROM debian:bullseye
174
174
WORKDIR "/"
175
175
RUN apt-get update -qq
176
176
RUN apt-get install -y --no-install-recommends wget
177
- RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.5.7 /setup_cpp_linux"
177
+ RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.5.8 /setup_cpp_linux"
178
178
RUN chmod +x ./setup_cpp_linux
179
179
180
180
# install llvm, cmake, ninja, and ccache
@@ -253,7 +253,7 @@ stages:
253
253
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
254
254
255
255
.setup_cpp : &setup_cpp |
256
- curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.7 /setup_cpp_linux"
256
+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.8 /setup_cpp_linux"
257
257
chmod +x setup_cpp_linux
258
258
./setup_cpp_linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
259
259
source ~/.profile
0 commit comments