aboutsummaryrefslogtreecommitdiff
path: root/docs/users/integration.md
diff options
context:
space:
mode:
authorPhil Christensen <philc@microsoft.com>2018-11-19 14:10:27 -0800
committerGitHub <noreply@github.com>2018-11-19 14:10:27 -0800
commit73f51d6aa8aa3fd23e8b3996a2f7dedbbf49d6cc (patch)
tree41b1e8007bd4116a0f756b9083b6bee3eb8a0aef /docs/users/integration.md
parent6633d421b7f53ba6faadb8ee85ef806718dfd64b (diff)
parentdc8503bb02ba8afc7641f53fd25d1566d44a9f41 (diff)
downloadvcpkg-73f51d6aa8aa3fd23e8b3996a2f7dedbbf49d6cc.tar.gz
vcpkg-73f51d6aa8aa3fd23e8b3996a2f7dedbbf49d6cc.zip
Merge pull request #4746 from TartanLlama/master
Rename example documents and add GitHub packaging example
Diffstat (limited to 'docs/users/integration.md')
-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