On Fri, Jun 4, 2021 at 11:13 PM Matthew Rogers via GitGitGadget
[off-list ref] wrote:
-if(WIN32)
+
+if (WIN32 AND NOT NO_VCPKG)
+ set(USING_VCPKG TRUE)
+else()
+ set(USING_VCPKG FALSE)
+endif()
I think it would be better if we could have an option for this knob.
Maybe like this
option(NO_VCPKG "Don't use vcpkg for obtaining dependencies. Only
applicable to Windows platforms" OFF)
I would prefer to use `USE_VCPKG`.
Thank You,
Sibi Siddharthan