Left: | ||
Right: |
OLD | NEW |
---|---|
1 libadblockplus | 1 libadblockplus |
2 ============== | 2 ============== |
3 | 3 |
4 A C++ library offering the core functionality of Adblock Plus. | 4 A C++ library offering the core functionality of Adblock Plus. |
5 | 5 |
6 Getting/updating the dependencies | |
7 --------------------------------- | |
8 | |
9 libadblockplus has dependencies that aren't part of this repository. To update | |
10 those, run the following after every repository update: | |
11 | |
12 ./ensure_dependencies.py | |
Wladimir Palant
2015/04/29 17:42:57
I still think that this should be part of the buil
Felix Dahlke
2015/04/30 05:06:11
Let's move that discussion here: https://intraforu
| |
13 | |
6 Building | 14 Building |
7 -------- | 15 -------- |
8 | 16 |
9 ### Unix | 17 ### Unix |
10 | 18 |
11 All you need is Python 2.6 and Make: | 19 All you need is Python 2.6 and Make: |
12 | 20 |
13 make | 21 make |
14 | 22 |
15 The default target architecture is x64. On a 32 bit system, run: | 23 The default target architecture is x64. On a 32 bit system, run: |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
188 | 196 |
189 ### Unix | 197 ### Unix |
190 | 198 |
191 The shell is automatically built by `make`, you can run it as follows: | 199 The shell is automatically built by `make`, you can run it as follows: |
192 | 200 |
193 build/out/abpshell | 201 build/out/abpshell |
194 | 202 |
195 ### Windows | 203 ### Windows |
196 | 204 |
197 Just run the project *abpshell*. | 205 Just run the project *abpshell*. |
OLD | NEW |