TKIVtk Build Error

I'm able to build the entire OpenCASCADE library(6.8.0) in VS2013 except for the TKIVtk project. I get unresolved external errors when linking. I am using VTK-6.1.0-vc12-64. Everything appears to be correct in the project settings as far as additional libraries and directories. The unresolved externals refer to vtkIdList, vtkPoints, vtkPolyData, vtkLookupTable and vtkDataObject. Can anyone help me resolve this? Thank you.

Paul

Paul Hentschel's picture

OK, I figured out what was wrong. I had started the Visual Studio session with win32 passed to msvc.bat. Even though all the paths in the project settings appeared to point to the 64 bit directories when I switched to 64 bit build, something must have been set in the environment that was messing it up. It worked when I restarted VS with win64 instead. It still seems strange that every other project in the solution built without error.

Paul