@@ -43,26 +43,26 @@ 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.3.1 ) , 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.4.0 ) , 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.3.1 /setup_cpp_windows.exe"
52+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.4.0 /setup_cpp_windows.exe"
5353./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
5454```
5555
5656``` ps1
5757# linux example
58- wget "https://github.com/aminya/setup-cpp/releases/download/v0.3.1 /setup_cpp_linux"
58+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.4.0 /setup_cpp_linux"
5959chmod +x setup_cpp_linux
6060sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6161```
6262
6363``` ps1
6464# mac example
65- wget "https://github.com/aminya/setup-cpp/releases/download/v0.3.1 /setup_cpp_mac"
65+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.4.0 /setup_cpp_mac"
6666chmod +x setup_cpp_mac
6767sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6868```
@@ -72,20 +72,20 @@ For the tools, instead of `true` that chooses the default version, you can pass
7272
7373### With Nodejs
7474
75- Download the ` setup_cpp.js ` file form [ here] ( https://github.com/aminya/setup-cpp/releases/download/v0.3.1 /setup_cpp.js ) , and run it with the available options.
75+ Download the ` setup_cpp.js ` file form [ here] ( https://github.com/aminya/setup-cpp/releases/download/v0.4.0 /setup_cpp.js ) , and run it with the available options.
7676
7777On Windows
7878
7979``` ps1
8080# open shell as admin
81- curl "https://github.com/aminya/setup-cpp/releases/download/v0.3.1 /setup_cpp.js"
81+ curl "https://github.com/aminya/setup-cpp/releases/download/v0.4.0 /setup_cpp.js"
8282node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
8383```
8484
8585On Linux or Mac:
8686
8787``` ps1
88- wget "https://github.com/aminya/setup-cpp/releases/download/v0.3.1 /setup_cpp.js"
88+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.4.0 /setup_cpp.js"
8989sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
9090```
9191
@@ -160,7 +160,7 @@ WORKDIR "/"
160160RUN apt-get update -qq
161161RUN apt-get install -y --no-install-recommends apt-utils
162162RUN apt-get install -y --no-install-recommends ca-certificates wget unzip
163- RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.3.1 /setup_cpp_linux"
163+ RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.4.0 /setup_cpp_linux"
164164RUN chmod +x ./setup_cpp_linux
165165
166166# install llvm, cmake, ninja, ccache, and vcpkg
0 commit comments