diff options
| author | pastdue <30942300+past-due@users.noreply.github.com> | 2021-06-08 12:50:09 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-08 09:50:09 -0700 |
| commit | 38d2893b30d4d4b3c09485216ecf4f6e8ef35d88 (patch) | |
| tree | b2a2161d3680b01fb6649991d290ce8c88e8587b /docs | |
| parent | 31993541c33bf8d3ffe6d664a36c846c63286c09 (diff) | |
| download | vcpkg-38d2893b30d4d4b3c09485216ecf4f6e8ef35d88.tar.gz vcpkg-38d2893b30d4d4b3c09485216ecf4f6e8ef35d88.zip | |
Add VCPKG_MAKE_CONFIGURE_OPTIONS (that can be set in the triplet) (#18132)
* Add VCPKG_MAKE_CONFIGURE_OPTIONS that can be set in the triplet
To append options to the configure command
* Add documentation
* Expand without quotes
Co-Authored-By: ras0219 <533828+ras0219@users.noreply.github.com>
* Add VCPKG_CMAKE_CONFIGURE_OPTIONS that can be set in the triplet
Co-Authored-By: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
* Bump vcpkg-cmake port-version
* Run x-add-version vcpkg-cmake
* Apply suggestions from code review
* [vcpkg-cmake] add version
Co-authored-by: ras0219 <533828+ras0219@users.noreply.github.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/users/triplets.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/users/triplets.md b/docs/users/triplets.md index 255743844..794c14b48 100644 --- a/docs/users/triplets.md +++ b/docs/users/triplets.md @@ -89,6 +89,25 @@ This option also has forms for configuration-specific flags: - `VCPKG_LINKER_FLAGS_DEBUG` - `VCPKG_LINKER_FLAGS_RELEASE` +### VCPKG_CMAKE_CONFIGURE_OPTIONS +Set additional CMake configure options that are appended to the configure command (in [`vcpkg_cmake_configure`](../maintainers/ports/vcpkg-cmake/vcpkg_cmake_configure.md)). + +This field is optional. + +Also available as build-type specific `VCPKG_CMAKE_CONFIGURE_OPTIONS_DEBUG` and `VCPKG_CMAKE_CONFIGURE_OPTIONS_RELEASE` variables. + +### VCPKG_MAKE_CONFIGURE_OPTIONS +Set additional automake / autoconf configure options that are appended to the configure command (in [`vcpkg_configure_make`](../maintainers/vcpkg_configure_make.md)). + +This field is optional. + +For example, to skip certain libtool checks that may errantly fail: +```cmake +set(VCPKG_MAKE_CONFIGURE_OPTIONS "lt_cv_deplibs_check_method=pass_all") +``` + +Also available as build-type specific `VCPKG_MAKE_CONFIGURE_OPTIONS_DEBUG` and `VCPKG_MAKE_CONFIGURE_OPTIONS_RELEASE` variables. + <a name="VCPKG_DEP_INFO_OVERRIDE_VARS"></a> ### VCPKG_DEP_INFO_OVERRIDE_VARS Replaces the default computed list of triplet "Supports" terms. |
