VTK static library throws LNK error in VS2019

Although there are lots of errors related to unresolved external symbol __imp_glGetError

Resolve this first.

1>  D:\projects\current\SIMAT\src\3rdParty\gult\glut.lib : warning LNK4272: library machine type 'x86' conflicts with target machine type 'x64'
1>  D:\projects\current\SIMAT\src\3rdParty\gult\glut32.lib : warning LNK4272: library machine type 'x86' conflicts with target machine type 'x64'

Your build configuration is x64, printed in the very first line of the log, while glut.lib, glut32.lib were built to target x86 platforms. Be consistent here.