0

I am going to write Qt3D application in windows. I have also installed necessary tools , but after compilation i receive 'unresolved external symbol' error. what is the solution?

Note : my compiler is microsoft visual c++ 9.0

leemes
  • 44,967
  • 21
  • 135
  • 183
Hesam Qodsi
  • 1,569
  • 3
  • 25
  • 38

1 Answers1

0

Are you linking-in the Qt3D library? If you don't - that's the reason for your issue. Open your project and add the neccessary .lib file into the list of libraries (and don't forget to either use a full, preferably relative, path or to add additional library path to the project's library path list)

YePhIcK
  • 5,816
  • 2
  • 27
  • 52