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
Hi:
Once I set up the additional contain directory for Vcore references to libuv, the static library file was successfully generated.
However, when compiling VNetWork, if I do not perform the same Settings, an error will be reported, indicating the following:
If the additional include directory of libuv is set on VNetWork, the compilation succeeds.
But this leads to a new problem.
Import both VCore.lib and vcore.lib into my newly created project
After vnetwork-lib two library files are compiled, the following error will be reported:
I suspect that both libraries contain libuv, or duplicate files.
May I ask how to deal with this situation in order to run normally?
Look forward to your help, thank you!
The text was updated successfully, but these errors were encountered:
Hi:
Once I set up the additional contain directory for Vcore references to libuv, the static library file was successfully generated.
However, when compiling VNetWork, if I do not perform the same Settings, an error will be reported, indicating the following:
If the additional include directory of libuv is set on VNetWork, the compilation succeeds.
But this leads to a new problem.
Import both VCore.lib and vcore.lib into my newly created project
After vnetwork-lib two library files are compiled, the following error will be reported:
I suspect that both libraries contain libuv, or duplicate files.
May I ask how to deal with this situation in order to run normally?
Look forward to your help, thank you!
Thank you for your usage. In fact, both VCore and VNetWork require including the libuv header file, which is uv.h. However, only VCore fully links the source files of libuv, while VNetWork only includes the header file. The VNetWork library depends on the VCore library, so linking the VCore library and including VCore.h is sufficient. Of course, the latest repository has updated the test project, and you can try generating it with CMake.
Hi:
Once I set up the additional contain directory for Vcore references to libuv, the static library file was successfully generated.
However, when compiling VNetWork, if I do not perform the same Settings, an error will be reported, indicating the following:
If the additional include directory of libuv is set on VNetWork, the compilation succeeds.
But this leads to a new problem.
Import both VCore.lib and vcore.lib into my newly created project
After vnetwork-lib two library files are compiled, the following error will be reported:
I suspect that both libraries contain libuv, or duplicate files.
May I ask how to deal with this situation in order to run normally?
Look forward to your help, thank you!
The text was updated successfully, but these errors were encountered: