@@ -45,21 +45,21 @@ Tip: You can automate downloading using `wget`, `curl`, or other similar tools.
45
45
46
46
### Executable
47
47
48
- Download the executable for your platform from [ here] ( https://github.com/aminya/setup-cpp/releases/tag/v0.6.0 ) , and run it with the available options.
48
+ Download the executable for your platform from [ here] ( https://github.com/aminya/setup-cpp/releases/tag/v0.6.1 ) , and run it with the available options.
49
49
50
50
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
51
51
52
52
``` ps1
53
53
# windows example (open shell as admin)
54
- curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.6.0 /setup_cpp_windows.exe"
54
+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.6.1 /setup_cpp_windows.exe"
55
55
./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
56
56
57
57
RefreshEnv.cmd # reload the environment
58
58
```
59
59
60
60
``` ps1
61
61
# linux example
62
- wget "https://github.com/aminya/setup-cpp/releases/download/v0.6.0 /setup_cpp_linux"
62
+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.6.1 /setup_cpp_linux"
63
63
chmod +x setup_cpp_linux
64
64
sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
65
65
@@ -68,7 +68,7 @@ source ~/.profile # reload the environment
68
68
69
69
``` ps1
70
70
# mac example
71
- wget "https://github.com/aminya/setup-cpp/releases/download/v0.6.0 /setup_cpp_mac"
71
+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.6.1 /setup_cpp_mac"
72
72
chmod +x setup_cpp_mac
73
73
sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
74
74
@@ -82,15 +82,15 @@ NOTE: you will not need `sudo` if you are already a root user (e.g., in a GitLab
82
82
83
83
### With Nodejs
84
84
85
- Download the ` setup_cpp.js ` file form [ here] ( https://github.com/aminya/setup-cpp/releases/download/v0.6.0 /setup_cpp.js ) , and run it with the available options.
85
+ Download the ` setup_cpp.js ` file form [ here] ( https://github.com/aminya/setup-cpp/releases/download/v0.6.1 /setup_cpp.js ) , and run it with the available options.
86
86
87
87
On Windows:
88
88
89
89
Open the shell as admin, download via ` curl ` , then install
90
90
91
91
``` ps1
92
92
# open shell as admin
93
- curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.6.0 /setup_cpp.js"
93
+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.6.1 /setup_cpp.js"
94
94
node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
95
95
96
96
RefreshEnv.cmd # reload the environment
@@ -99,7 +99,7 @@ RefreshEnv.cmd # reload the environment
99
99
On Linux or Mac:
100
100
101
101
``` ps1
102
- wget "https://github.com/aminya/setup-cpp/releases/download/v0.6.0 /setup_cpp.js"
102
+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.6.1 /setup_cpp.js"
103
103
sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
104
104
105
105
source ~/.profile # reload the environment
@@ -178,7 +178,7 @@ FROM debian:bullseye
178
178
WORKDIR "/"
179
179
RUN apt-get update -qq
180
180
RUN apt-get install -y --no-install-recommends wget
181
- RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.6.0 /setup_cpp_linux"
181
+ RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.6.1 /setup_cpp_linux"
182
182
RUN chmod +x ./setup_cpp_linux
183
183
184
184
# install llvm, cmake, ninja, and ccache
@@ -257,7 +257,7 @@ stages:
257
257
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
258
258
259
259
.setup_cpp : &setup_cpp |
260
- curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.6.0 /setup_cpp_linux"
260
+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.6.1 /setup_cpp_linux"
261
261
chmod +x setup_cpp_linux
262
262
./setup_cpp_linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
263
263
source ~/.profile
0 commit comments