Maybe I messed something up in the linking stage, will give it another go tomorrow and see where I wind up, there's definitely a version of curl in there without runtime linking yeah?
Cheers for the speedy response btw
Hey all, hope I'm not being dumb here, I've integrated TurboActivate into a mac version of the project with no problems, trying to get the same thing working on Windows, in VS2022. I can't really use the dynamic version of the lib, as I'm using this in a vst which absolutely hates runtime linking, so I'm using the static lib,but unfortunately as far as I can tell, curl (for both /MT and /MD) needs libcurl.dll to be alongside the executable so it can runtime link to it. Was wondering if there's a workaround for this, I tried replacing the curl lib with one I built statically, that doesn't rely on runtime linking but am getting the same issue (which is super weird).
Any advice would be super appreciated, Cheers!
Extract the entire static library folder and don’t move or swap out any dependencies. All of them are right there.
Maybe I messed something up in the linking stage, will give it another go tomorrow and see where I wind up, there's definitely a version of curl in there without runtime linking yeah?
Cheers for the speedy response btw
there's definitely a version of curl in there without runtime linking yeah?
Yes.
Got it working, for whatever reason linking to TurboActivate via the project settings caused the above issue whereas using the block from example .c specifying the library type and to link to it via preprocessors didn't. Cheers for the help!