@@ -40,26 +40,26 @@ Tip: You can automate downloading using `wget`, `curl` or other similar tools.
4040
4141### Executable
4242
43- Download the executable for your platform from [ here] ( https://github.com/aminya/setup-cpp/releases/tag/v0.2.1 ) , and run it with the available options.
43+ Download the executable for your platform from [ here] ( https://github.com/aminya/setup-cpp/releases/tag/v0.2.2 ) , and run it with the available options.
4444
4545An example that installs llvm, cmake, ninja, ccache, and conan:
4646
4747``` ps1
4848# windows example (open shell as admin)
49- curl -O "https://github.com/aminya/setup-cpp/releases/download/v0.2.1 /setup_cpp_windows.exe"
49+ curl -O "https://github.com/aminya/setup-cpp/releases/download/v0.2.2 /setup_cpp_windows.exe"
5050./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --conan true
5151```
5252
5353``` ps1
5454# linux example
55- wget "https://github.com/aminya/setup-cpp/releases/download/v0.2.1 /setup_cpp_linux"
55+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.2.2 /setup_cpp_linux"
5656chmod +x setup_cpp_linux
5757sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --conan true
5858```
5959
6060``` ps1
6161# mac example
62- wget "https://github.com/aminya/setup-cpp/releases/download/v0.2.1 /setup_cpp_mac"
62+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.2.2 /setup_cpp_mac"
6363chmod +x setup_cpp_mac
6464sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --conan true
6565```
@@ -69,20 +69,20 @@ For the tools, instead of `true`, which chooses the default version, you can pas
6969
7070### With Nodejs
7171
72- Download the ` setup_cpp.js ` file form [ here] ( https://github.com/aminya/setup-cpp/releases/download/v0.2.1 /setup_cpp.js ) , and run it with the available options.
72+ Download the ` setup_cpp.js ` file form [ here] ( https://github.com/aminya/setup-cpp/releases/download/v0.2.2 /setup_cpp.js ) , and run it with the available options.
7373
7474On Windows
7575
7676``` ps1
7777# open shell as admin
78- curl "https://github.com/aminya/setup-cpp/releases/download/v0.2.1 /setup_cpp.js"
78+ curl "https://github.com/aminya/setup-cpp/releases/download/v0.2.2 /setup_cpp.js"
7979node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --conan true
8080```
8181
8282On Linux or Mac:
8383
8484``` ps1
85- wget "https://github.com/aminya/setup-cpp/releases/download/v0.2.1 /setup_cpp.js"
85+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.2.2 /setup_cpp.js"
8686sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --conan true
8787```
8888
@@ -141,7 +141,7 @@ WORKDIR "/"
141141RUN apt-get update -qq
142142RUN apt-get install -y --no-install-recommends apt-utils
143143RUN apt-get install -y --no-install-recommends ca-certificates wget unzip
144- RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.2.1 /setup_cpp_linux"
144+ RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.2.2 /setup_cpp_linux"
145145RUN chmod +x ./setup_cpp_linux
146146
147147# install llvm, cmake, ninja, ccache, and conan
0 commit comments