I have a problem with compile project with CGAL and Qt in VisualStudio 2013. I try demo app of Polyhedron in CGAL demos and after I try to move Scene to my own Qt project.
Errors are like:
error LNK2001: unresolved external symbol "public: static struct QMetaObject const CGAL::Three::Viewer_interface::staticMetaObject" (?staticMetaObject@Viewer_interface@Three@CGAL@@2UQMetaObject@@B) ...\Scene_polyhedron_item.obj
error LNK2001: unresolved external symbol "public: static class QColor const CGAL::Three::Scene_item::defaultColor" (?defaultColor@Scene_item@Three@CGAL@@2VQColor@@B) ...\Scene_polyhedron_item.obj
Linker input :
moc_* files are generated every build
Thanks for any advice.
Problem was in preprocesor constant of lib ... where was set to EXPORT, but have to be IMPORT.
So Now it is working, jus