#a better way to link libraries with vcpkg packages?

1 messages · Page 1 of 1 (latest)

sudden palm
#

exe.addVcpkgPaths

#

and use the normal exe.linkSystemLibrary

#
    exe.addVcpkgPaths(.static);
    if(exe.vcpkg_bin_path) {
        exe.linkSystemLibrary("utf8proc");
    }
#

Something like this

#

Tho if you want to ship the DLL, I don't know exactly how