aboutsummaryrefslogtreecommitdiff
path: root/docs/users
diff options
context:
space:
mode:
authorSimon Brand <tartanllama@gmail.com>2018-11-15 11:18:48 +0000
committerSimon Brand <tartanllama@gmail.com>2018-11-15 11:23:34 +0000
commit56c94a81027dae14ea8adabcbda800d0f7c10d0b (patch)
tree1661c9711c5317e1bb6acc786e28700db1698caf /docs/users
parentf1eb3aa4b95540a8fb4a8e8d341e4c08136bd756 (diff)
downloadvcpkg-56c94a81027dae14ea8adabcbda800d0f7c10d0b.tar.gz
vcpkg-56c94a81027dae14ea8adabcbda800d0f7c10d0b.zip
Rename example documents
The current names and titles of the examples put too much emphasis on the package which is being demonstrated rather than the concept. This can be jarring for newcomers. This patch renames them to put the emphasis on the concept instead.
Diffstat (limited to 'docs/users')
-rw-r--r--docs/users/integration.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/users/integration.md b/docs/users/integration.md
index ce52abe23..fbaea41d9 100644
--- a/docs/users/integration.md
+++ b/docs/users/integration.md
@@ -35,7 +35,7 @@ cmake ../my/project -DCMAKE_TOOLCHAIN_FILE=C:\vcpkg\scripts\buildsystems\vcpkg.c
```
Projects configured with the Vcpkg toolchain file will have the appropriate Vcpkg folders added to the cmake search paths. This makes all libraries available to be found through `find_package()`, `find_path()`, and `find_library()`.
-See [Example: Using Sqlite](../examples/using-sqlite.md) for a fully worked example using our CMake toolchain.
+See [Installing and Using Packages Example: sqlite](../examples/installing-and-using-packages.md) for a fully worked example using our CMake toolchain.
Note that we do not automatically add ourselves to your compiler include paths. To use a header-only library, simply use `find_path()`, which will correctly work on all platforms:
```cmake