AWS SDK with JUCE and Visual Studio

Hi,

I reviewed the other topics on this but I’m having a bit of trouble with adding the AWS SDK to my juce project.

I installed it via:
git clone https://github.com/aws/aws-sdk-cpp.git
cd aws-sdk-cpp
mkdir build
cd build
cmake … -G “Visual Studio 16 2019” -A x64
msbuild ALL_BUILD.vcxproj /p:Configuration=Debug

Once done I added the /include and /lib directories to the relevant debug and release version of visual studio I’m using.

EDIT:

Fixed, added missed step - above will fix it for anyone having same issue.

Did you also add the .lib file to the link dependencies? Adding the folder to the library search path is not enough.

Hey just wondering as I wasn’t super sure from your post.

Were you able to build and link the library statically for your project? And was your project a VST or standalone?
I tried following your steps but have been getting unrelenting errors lol.

I ended up removing the sdk and instead building a rest api with aws and then communicated with yhat using cognito. Iirc it was a pain to set up so just dropped it.