@@ -41,26 +41,26 @@ Tip: You can automate downloading using `wget`, `curl`, or other similar tools.
4141
4242### Executable
4343
44- Download the executable for your platform from [ here] ( https://github.com/aminya/setup-cpp/releases/tag/v0.3.0 ) , and run it with the available options.
44+ 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.
4545
4646An example that installs llvm, cmake, ninja, ccache, and vcpkg:
4747
4848``` ps1
4949# windows example (open shell as admin)
50- curl -O "https://github.com/aminya/setup-cpp/releases/download/v0.3.0 /setup_cpp_windows.exe"
50+ curl -O "https://github.com/aminya/setup-cpp/releases/download/v0.3.1 /setup_cpp_windows.exe"
5151./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
5252```
5353
5454``` ps1
5555# linux example
56- wget "https://github.com/aminya/setup-cpp/releases/download/v0.3.0 /setup_cpp_linux"
56+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.3.1 /setup_cpp_linux"
5757chmod +x setup_cpp_linux
5858sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
5959```
6060
6161``` ps1
6262# mac example
63- wget "https://github.com/aminya/setup-cpp/releases/download/v0.3.0 /setup_cpp_mac"
63+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.3.1 /setup_cpp_mac"
6464chmod +x setup_cpp_mac
6565sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6666```
@@ -70,20 +70,20 @@ For the tools, instead of `true` that chooses the default version, you can pass
7070
7171### With Nodejs
7272
73- Download the ` setup_cpp.js ` file form [ here] ( https://github.com/aminya/setup-cpp/releases/download/v0.3.0 /setup_cpp.js ) , and run it with the available options.
73+ 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.
7474
7575On Windows
7676
7777``` ps1
7878# open shell as admin
79- curl "https://github.com/aminya/setup-cpp/releases/download/v0.3.0 /setup_cpp.js"
79+ curl "https://github.com/aminya/setup-cpp/releases/download/v0.3.1 /setup_cpp.js"
8080node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
8181```
8282
8383On Linux or Mac:
8484
8585``` ps1
86- wget "https://github.com/aminya/setup-cpp/releases/download/v0.3.0 /setup_cpp.js"
86+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.3.1 /setup_cpp.js"
8787sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
8888```
8989
@@ -123,7 +123,7 @@ jobs:
123123 compiler : ${{ matrix.compiler }}
124124 cmake : true
125125 ninja : true
126- conan : true
126+ vcpkg : true
127127 cppcheck : true
128128 ccache : true # instead of `true`, which chooses the default version, you can pass a specific version.
129129 # add any tool that you need here...
@@ -142,7 +142,7 @@ WORKDIR "/"
142142RUN apt-get update -qq
143143RUN apt-get install -y --no-install-recommends apt-utils
144144RUN apt-get install -y --no-install-recommends ca-certificates wget unzip
145- RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.3.0 /setup_cpp_linux"
145+ RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.3.1 /setup_cpp_linux"
146146RUN chmod +x ./setup_cpp_linux
147147
148148# install llvm, cmake, ninja, ccache, and vcpkg
0 commit comments