Hi, vcpkg Team
I write C++ in Visual Studio, by first write CMakeLists.txt then generate .sln file, without using vcpkg.
Yesterday I just installed vcpkg with Visual Studio integration via:
After the integration installation, there is vcpkg item in existing/new created Visual Project's property page, and Use Vcpkg is "YES" on default widely:

I know vcpkg is powerful and convenient from the readme page, however it may mess up my dependencies
For example,
compiling OpenCV imgcodecs module with zlib static library from source, however it automatically linking to vcpkg installed zlib dll file, which is not as expected.
(opencv/opencv#17051)
My question: I would like to still keep vcpkg Visual Studio integration item/page in project property, and is it possible to set Use Vcpkg to "NO" widely? And is it possible to just set it to "NO" for one specific project in a CMake manner? i.e. passing one option to disable / not use vcpkg temporarily? If possible then how to config that?
Thanks.