I have been trying to complete the first tutorial on the FreeType website. I am using the provided code on the website and I have added the libraries and included the proper include files but I receive 7 LNK2019 errors:
Error LNK2019 unresolved external symbol FT_Set_Transform referenced in function main \main.obj 1
Error LNK2019 unresolved external symbol FT_Set_Char_Size referenced in function main \main.obj 1
Error LNK2019 unresolved external symbol FT_New_Face referenced in function main \main.obj 1
Error LNK2019 unresolved external symbol FT_Load_Char referenced in function main \main.obj 1
Error LNK2019 unresolved external symbol FT_Init_FreeType referenced in function main \main.obj 1
Error LNK2019 unresolved external symbol FT_Done_FreeType referenced in function main \main.obj 1
Error LNK2019 unresolved external symbol FT_Done_Face referenced in function main \main.obj 1
I found this stack over flow thread and tried what the comments suggested but that made more errors pop up.
I tried this tutorial on how to set it up but I still receive the same 7 errors. And the guy in the comments section had the same problem as me but no answers there.