I am getting the following error when building my project:
LNK2019 unresolved external symbol __imp_curl_global_init referenced in function twilio_send_message extendedPoke C:\Dev\ts3Plugin-ExtendedPoke\src\twilio.obj 1
Which lead me looking into the external dependencies folder in my IDE (Visual Studio). There I can open the curl.h header and if I hover over the functions I get the error "Function definition for 'curl_global_init' not found".
I have already added the Curl include folder in Properties -> C/C++ -> General -> Additional Include Directories. Added the Curl lib folder in Properties -> Linker -> General -> Additional Library Directories and added the Curl lib in Properties -> Linker -> Input -> Additional Dependencies.
Am I missing something?