@@ -43,21 +43,21 @@ Tip: You can automate downloading using `wget`, `curl`, or other similar tools.
4343
4444### Executable
4545
46- Download the executable for your platform from [ here] ( https://github.com/aminya/setup-cpp/releases/tag/v0.5.6 ) , 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.7 ) , and run it with the available options.
4747
4848An example that installs llvm, cmake, ninja, ccache, and vcpkg:
4949
5050``` ps1
5151# windows example (open shell as admin)
52- curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.6 /setup_cpp_windows.exe"
52+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.7 /setup_cpp_windows.exe"
5353./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
5454
5555RefreshEnv.cmd # reload the environment
5656```
5757
5858``` ps1
5959# linux example
60- wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.6 /setup_cpp_linux"
60+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.7 /setup_cpp_linux"
6161chmod +x setup_cpp_linux
6262sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6363
@@ -66,7 +66,7 @@ source ~/.profile # reload the environment
6666
6767``` ps1
6868# mac example
69- wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.6 /setup_cpp_mac"
69+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.7 /setup_cpp_mac"
7070chmod +x setup_cpp_mac
7171sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
7272
@@ -80,15 +80,15 @@ NOTE: you will not need `sudo` if you are already a root user (e.g., in a GitLab
8080
8181### With Nodejs
8282
83- Download the ` setup_cpp.js ` file form [ here] ( https://github.com/aminya/setup-cpp/releases/download/v0.5.6 /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.7 /setup_cpp.js ) , and run it with the available options.
8484
8585On Windows:
8686
8787Open the shell as admin, download via ` curl ` , then install
8888
8989``` ps1
9090# open shell as admin
91- curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.6 /setup_cpp.js"
91+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.7 /setup_cpp.js"
9292node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
9393
9494RefreshEnv.cmd # reload the environment
@@ -97,7 +97,7 @@ RefreshEnv.cmd # reload the environment
9797On Linux or Mac:
9898
9999``` ps1
100- wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.6 /setup_cpp.js"
100+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.7 /setup_cpp.js"
101101sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
102102
103103source ~/.profile # reload the environment
@@ -174,7 +174,7 @@ FROM debian:bullseye
174174WORKDIR "/"
175175RUN apt-get update -qq
176176RUN apt-get install -y --no-install-recommends wget
177- RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.5.6 /setup_cpp_linux"
177+ RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.5.7 /setup_cpp_linux"
178178RUN chmod +x ./setup_cpp_linux
179179
180180# install llvm, cmake, ninja, and ccache
@@ -253,7 +253,7 @@ stages:
253253 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
254254
255255.setup_cpp : &setup_cpp |
256- curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.6 /setup_cpp_linux"
256+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.7 /setup_cpp_linux"
257257 chmod +x setup_cpp_linux
258258 ./setup_cpp_linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
259259 source ~/.profile
0 commit comments