@@ -35,55 +35,55 @@ The package can be used locally or from CI services like GitHub Actions. Stay tu
3535
3636# From Terminal
3737
38- You should download the exe file or the js file (if have Nodejs installed), and run it with the available options.
38+ You should download the executable file or the js file (if Nodejs installed), and run it with the available options.
3939
40- Tip: You can automate downloading using ` wget ` , ` curl ` or other similar tools.
40+ 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.2.2 ) , 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.0 ) , 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.2.2 /setup_cpp_windows.exe"
50+ curl -O "https://github.com/aminya/setup-cpp/releases/download/v0.3.0 /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.2.2 /setup_cpp_linux"
56+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.3.0 /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.2.2 /setup_cpp_mac"
63+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.3.0 /setup_cpp_mac"
6464chmod +x setup_cpp_mac
6565sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6666```
6767
6868NOTE: In the ` compiler ` entry, you can specify the version after ` - ` like ` llvm-11 ` .
69- For the tools, instead of ` true ` , which chooses the default version, you can pass a specific version.
69+ For the tools, instead of ` true ` that chooses the default version, you can pass a specific version.
7070
7171### With Nodejs
7272
73- 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.
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.
7474
7575On Windows
7676
7777``` ps1
7878# open shell as admin
79- curl "https://github.com/aminya/setup-cpp/releases/download/v0.2.2 /setup_cpp.js"
79+ curl "https://github.com/aminya/setup-cpp/releases/download/v0.3.0 /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.2.2 /setup_cpp.js"
86+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.3.0 /setup_cpp.js"
8787sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
8888```
8989
@@ -131,7 +131,7 @@ jobs:
131131
132132# Inside Docker
133133
134- Here is an example for using setup_cpp to make a builder image that has the cpp tools you need.
134+ Here is an example for using setup_cpp to make a builder image that has the Cpp tools you need.
135135
136136``` dockerfile
137137# debian
@@ -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.2.2 /setup_cpp_linux"
145+ RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.3.0 /setup_cpp_linux"
146146RUN chmod +x ./setup_cpp_linux
147147
148148# install llvm, cmake, ninja, ccache, and vcpkg
@@ -159,7 +159,7 @@ If you want to build the ones included, then run:
159159docker build -f ./building/docker/debian.dockerfile -t setup_cpp .
160160```
161161
162- Where you should use the path to the the docker after ` -f ` .
162+ Where you should use the path to the docker after ` -f ` .
163163
164164After build, run the following to start an interactive shell in your container
165165
@@ -169,4 +169,4 @@ docker run -it setup_cpp
169169
170170### Incomplete
171171
172- - msvc. It is implemented, but has bugs. See [ this issue] ( https://github.com/aminya/setup-cpp/issues/1 )
172+ - ` msvc ` . It is implemented, but it has bugs. See [ this issue] ( https://github.com/aminya/setup-cpp/issues/1 )
0 commit comments