@@ -43,26 +43,26 @@ Tip: You can automate downloading using `wget`, `curl`, or other similar tools.
43
43
44
44
### Executable
45
45
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.
47
47
48
48
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
49
49
50
50
``` ps1
51
51
# 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"
53
53
./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
54
54
```
55
55
56
56
``` ps1
57
57
# 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"
59
59
chmod +x setup_cpp_linux
60
60
sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
61
61
```
62
62
63
63
``` ps1
64
64
# 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"
66
66
chmod +x setup_cpp_mac
67
67
sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
68
68
```
@@ -72,20 +72,20 @@ For the tools, instead of `true` that chooses the default version, you can pass
72
72
73
73
### With Nodejs
74
74
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.
76
76
77
77
On Windows
78
78
79
79
``` ps1
80
80
# 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"
82
82
node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
83
83
```
84
84
85
85
On Linux or Mac:
86
86
87
87
``` 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"
89
89
sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
90
90
```
91
91
@@ -160,7 +160,7 @@ WORKDIR "/"
160
160
RUN apt-get update -qq
161
161
RUN apt-get install -y --no-install-recommends apt-utils
162
162
RUN 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"
164
164
RUN chmod +x ./setup_cpp_linux
165
165
166
166
# install llvm, cmake, ninja, ccache, and vcpkg
0 commit comments