Whenever I build the project from the .sln file, there are no issues, however when I compile my assignment in Visual Studio using (cmd + shift + b), I have ~22 errors regarding LINK
Most of the errors say
LNK2001 unresolved external symbol __imp_strncpy C:\Users...\computer-graphics-meshes\out\build\x64-Debug\computer-graphics-meshes C:\Users...\computer-graphics-meshes\out\build\x64-Debug\glfw3.lib(input.c.obj)
Note that this happens even when I create a new project from scratch. I've tried setting the runtime library to a Multi-threaded DLL (/MD) to no avail, this is very frustrating as I can't even check if my code can even compile.
Whenever I build the project from the .sln file, there are no issues, however when I compile my assignment in Visual Studio using (cmd + shift + b), I have ~22 errors regarding LINK
Most of the errors say LNK2001 unresolved external symbol __imp_strncpy C:\Users...\computer-graphics-meshes\out\build\x64-Debug\computer-graphics-meshes C:\Users...\computer-graphics-meshes\out\build\x64-Debug\glfw3.lib(input.c.obj)
Note that this happens even when I create a new project from scratch. I've tried setting the runtime library to a Multi-threaded DLL (/MD) to no avail, this is very frustrating as I can't even check if my code can even compile.
Has anyone else come across this issue?