@@ -51,21 +51,21 @@ Tip: You can automate downloading using `wget`, `curl`, or other similar tools.
5151
5252### Executable
5353
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.
5555
5656An example that installs llvm, cmake, ninja, ccache, and vcpkg:
5757
5858``` ps1
5959# 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"
6161./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6262
6363RefreshEnv.cmd # reload the environment
6464```
6565
6666``` ps1
6767# 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"
6969chmod +x setup_cpp_linux
7070sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
7171
@@ -74,7 +74,7 @@ source ~/.profile # reload the environment
7474
7575``` ps1
7676# 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"
7878chmod +x setup_cpp_mac
7979sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
8080
@@ -88,15 +88,15 @@ NOTE: you will not need `sudo` if you are already a root user (e.g., in a GitLab
8888
8989### With Nodejs
9090
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.
9292
9393On Windows:
9494
9595Open the shell as admin, download via ` curl ` , then install
9696
9797``` ps1
9898# 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"
100100node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
101101
102102RefreshEnv.cmd # reload the environment
@@ -105,7 +105,7 @@ RefreshEnv.cmd # reload the environment
105105On Linux or Mac:
106106
107107``` 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"
109109sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
110110
111111source ~/.profile # reload the environment
@@ -184,7 +184,7 @@ FROM debian:bullseye
184184WORKDIR "/"
185185RUN apt-get update -qq
186186RUN 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"
188188RUN chmod +x ./setup_cpp_linux
189189
190190# install llvm, cmake, ninja, and ccache
@@ -263,7 +263,7 @@ stages:
263263 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
264264
265265.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"
267267 chmod +x setup_cpp_linux
268268 ./setup_cpp_linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
269269 source ~/.profile
0 commit comments