@@ -41,26 +41,26 @@ Tip: You can automate downloading using `wget`, `curl`, or other similar tools.
41
41
42
42
### Executable
43
43
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.
45
45
46
46
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
47
47
48
48
``` ps1
49
49
# 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"
51
51
./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
52
52
```
53
53
54
54
``` ps1
55
55
# 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"
57
57
chmod +x setup_cpp_linux
58
58
sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
59
59
```
60
60
61
61
``` ps1
62
62
# 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"
64
64
chmod +x setup_cpp_mac
65
65
sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
66
66
```
@@ -70,20 +70,20 @@ For the tools, instead of `true` that chooses the default version, you can pass
70
70
71
71
### With Nodejs
72
72
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.
74
74
75
75
On Windows
76
76
77
77
``` ps1
78
78
# 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"
80
80
node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
81
81
```
82
82
83
83
On Linux or Mac:
84
84
85
85
``` 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"
87
87
sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
88
88
```
89
89
@@ -123,7 +123,7 @@ jobs:
123
123
compiler : ${{ matrix.compiler }}
124
124
cmake : true
125
125
ninja : true
126
- conan : true
126
+ vcpkg : true
127
127
cppcheck : true
128
128
ccache : true # instead of `true`, which chooses the default version, you can pass a specific version.
129
129
# add any tool that you need here...
@@ -142,7 +142,7 @@ WORKDIR "/"
142
142
RUN apt-get update -qq
143
143
RUN apt-get install -y --no-install-recommends apt-utils
144
144
RUN 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"
146
146
RUN chmod +x ./setup_cpp_linux
147
147
148
148
# install llvm, cmake, ninja, ccache, and vcpkg
0 commit comments