The latest version of this document lives in the vcpkg repo. Check if one or more features are a part of a package installation.
vcpkg_check_features(
OUT_FEATURE_OPTIONS <out-var>
[PREFIX <prefix>]
[FEATURES
[<feature-name> <feature-var>]...
]
[INVERTED_FEATURES
[<feature-name> <feature-var>]...
]
)
The <out-var>
should be set to FEATURE_OPTIONS
by convention.
vcpkg_check_features()
will:
- for each
<feature-name>
passed inFEATURES
:- if the feature is set, add
-D<feature-var>=ON
to<out-var>
, and set<prefix>_<feature-var>
to ON. - if the feature is not set, add
-D<feature-var>=OFF
to<out-var>
, and set<prefix>_<feature-var>
to OFF.
- if the feature is set, add
- for each
<feature-name>
passed inINVERTED_FEATURES
:- if the feature is set, add
-D<feature-var>=OFF
to<out-var>
, and set<prefix>_<feature-var>
to OFF. - if the feature is not set, add
-D<feature-var>=ON
to<out-var>
, and set<prefix>_<feature-var>
to ON.
- if the feature is set, add
If <prefix>
is not passed, then the feature vars set are simply <feature-var>
,
not _<feature-var>
.
If INVERTED_FEATURES
is not passed, then the FEATURES
keyword is optional.
This behavior is deprecated.
If the same <feature-var>
is passed multiple times,
then vcpkg_check_features
will cause a fatal error,
since that is a bug.
$ ./vcpkg install mimalloc[asm,secure]
# ports/mimalloc/portfile.cmake
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
FEATURES
asm MI_SEE_ASM
override MI_OVERRIDE
secure MI_SECURE
)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
# Expands to "-DMI_SEE_ASM=ON;-DMI_OVERRIDE=OFF;-DMI_SECURE=ON"
${FEATURE_OPTIONS}
)
$ ./vcpkg install cpprestsdk[websockets]
# ports/cpprestsdk/portfile.cmake
vcpkg_check_features(
INVERTED_FEATURES
brotli CPPREST_EXCLUDE_BROTLI
websockets CPPREST_EXCLUDE_WEBSOCKETS
)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
# Expands to "-DCPPREST_EXCLUDE_BROTLI=ON;-DCPPREST_EXCLUDE_WEBSOCKETS=OFF"
${FEATURE_OPTIONS}
)
$ ./vcpkg install pcl[cuda]
# ports/pcl/portfile.cmake
vcpkg_check_features(
FEATURES
cuda WITH_CUDA
cuda BUILD_CUDA
cuda BUILD_GPU
)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
# Expands to "-DWITH_CUDA=ON;-DBUILD_CUDA=ON;-DBUILD_GPU=ON"
${FEATURE_OPTIONS}
)
$ ./vcpkg install rocksdb[tbb]
# ports/rocksdb/portfile.cmake
vcpkg_check_features(
FEATURES
tbb WITH_TBB
INVERTED_FEATURES
tbb ROCKSDB_IGNORE_PACKAGE_TBB
)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
# Expands to "-DWITH_TBB=ON;-DROCKSDB_IGNORE_PACKAGE_TBB=OFF"
${FEATURE_OPTIONS}
)