aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2017-09-21 01:24:32 -0700
committerGitHub <noreply@github.com>2017-09-21 01:24:32 -0700
commit2d6e88c16e4cc1eb04e7d50a699193082f2e09da (patch)
treed78c6fa026732e4767bc5fd7905eaed97cca6575
parent801f3c6be42d2f2df95ca2f11f0d4b13f0b12fa7 (diff)
parente5861d356bf2b1874b74a321dcec9439a8d11ef5 (diff)
downloadvcpkg-2d6e88c16e4cc1eb04e7d50a699193082f2e09da.tar.gz
vcpkg-2d6e88c16e4cc1eb04e7d50a699193082f2e09da.zip
Merge pull request #1743 from paercebal/doc_for_tolerance_debug_release_config
Updated the documentation to reflect the greater tolerance on configs
-rw-r--r--docs/about/faq.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/about/faq.md b/docs/about/faq.md
index 8234216e0..88f88bad0 100644
--- a/docs/about/faq.md
+++ b/docs/about/faq.md
@@ -50,7 +50,9 @@ By saving the changes to the portfile (and checking them in), you'll get the sam
Yes. While Vcpkg will only produce the standard "Release" and "Debug" configurations when building a library, you can get integration support for your projects' custom configurations, in addition to your project's standard configurations.
-The MSBuild $(VcpkgConfiguration) macro, if not set in your project, will identify either the "Release" or the "Debug" configuration. You only need to override this macro in your project file (.vcxproj) to declare the compatibility between your configuration, and the target standard configuration.
+First of all, Vcpkg will automatically assume any custom configuration starting with "Release" (resp. "Debug") as a configuration that is compatible with the standard "Release" (resp. "Debug") configuration and will act accordingly.
+
+For other configurations, you only need to override the MSBuild `$(VcpkgConfiguration)` macro in your project file (.vcxproj) to declare the compatibility between your configuration, and the target standard configuration.
For example, you can add support for your "MyRelease" configuration by adding in your project file:
```