@@ -47,21 +47,21 @@ Tip: You can automate downloading using `wget`, `curl`, or other similar tools.
4747
4848### Executable
4949
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.
5151
5252An example that installs llvm, cmake, ninja, ccache, and vcpkg:
5353
5454``` ps1
5555# 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"
5757./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
5858
5959RefreshEnv.cmd # reload the environment
6060```
6161
6262``` ps1
6363# 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"
6565chmod +x setup_cpp_linux
6666sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6767
@@ -70,7 +70,7 @@ source ~/.profile # reload the environment
7070
7171``` ps1
7272# 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"
7474chmod +x setup_cpp_mac
7575sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
7676
@@ -84,15 +84,15 @@ NOTE: you will not need `sudo` if you are already a root user (e.g., in a GitLab
8484
8585### With Nodejs
8686
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.
8888
8989On Windows:
9090
9191Open the shell as admin, download via ` curl ` , then install
9292
9393``` ps1
9494# 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"
9696node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
9797
9898RefreshEnv.cmd # reload the environment
@@ -101,7 +101,7 @@ RefreshEnv.cmd # reload the environment
101101On Linux or Mac:
102102
103103``` 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"
105105sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
106106
107107source ~/.profile # reload the environment
@@ -180,7 +180,7 @@ FROM debian:bullseye
180180WORKDIR "/"
181181RUN apt-get update -qq
182182RUN 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"
184184RUN chmod +x ./setup_cpp_linux
185185
186186# install llvm, cmake, ninja, and ccache
@@ -259,7 +259,7 @@ stages:
259259 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
260260
261261.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"
263263 chmod +x setup_cpp_linux
264264 ./setup_cpp_linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
265265 source ~/.profile
0 commit comments