You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem: CMake dev warning related to CMP0022 on Win32
> cmake .. -DCMAKE_TOOLCHAIN_FILE="%VCPKG_ROOT%\scripts\buildsystems\vcpkg.cmake"
Target "czmq" has an INTERFACE_LINK_LIBRARIES property which differs from
its LINK_INTERFACE_LIBRARIES_DEBUG properties.
INTERFACE_LINK_LIBRARIES:
ws2_32;Rpcrt4;Iphlpapi;
$<$<NOT:$<CONFIG:DEBUG>>:C:/vcpkg/installed/x86-windows/lib/libzmq-mt-4_3_2.lib>;
$<$<CONFIG:DEBUG>:C:/vcpkg/installed/x86-windows/debug/lib/libzmq-mt-gd-4_3_2.lib>;
C:/ProgramData/Anaconda3/Library/lib/libcurl.lib
LINK_INTERFACE_LIBRARIES_DEBUG:
ws2_32;Rpcrt4;Iphlpapi;
C:/vcpkg/installed/x86-windows/debug/lib/libzmq-mt-gd-4_3_2.lib;
C:/ProgramData/Anaconda3/Library/lib/libcurl.lib
This warning will disappear by upgrading the minimum required CMake version to 2.8.12.
(libzmq also sets minimum required version to 2.8.12)
0 commit comments