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