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. They are |
| 10 retrieved and updated during the build process, but you can also manually update |
| 11 them by running the following: |
| 12 |
| 13 ./ensure_dependencies.py |
| 14 |
6 Building | 15 Building |
7 -------- | 16 -------- |
8 | 17 |
9 ### Unix | 18 ### Unix |
10 | 19 |
11 All you need is Python 2.6 and Make: | 20 All you need is Python 2.6 and Make: |
12 | 21 |
13 make | 22 make |
14 | 23 |
15 The default target architecture is x64. On a 32 bit system, run: | 24 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 | 197 |
189 ### Unix | 198 ### Unix |
190 | 199 |
191 The shell is automatically built by `make`, you can run it as follows: | 200 The shell is automatically built by `make`, you can run it as follows: |
192 | 201 |
193 build/out/abpshell | 202 build/out/abpshell |
194 | 203 |
195 ### Windows | 204 ### Windows |
196 | 205 |
197 Just run the project *abpshell*. | 206 Just run the project *abpshell*. |
OLD | NEW |