unresolved external symbol bool __thiscall Notify::assert_fa

Hi:

im new to panda3d and im trying to start a project, i just added:

  //------------------------- Texture
  PT(Texture) tex;
tex = TexturePool::load_texture("maps/noise.rgb");

NodePath smiley;
smiley = window->load_model(window->get_render(),"smiley.egg");
smiley.set_texture(tex, 1);

and linker throws :

1>main.obj : error LNK2001: unresolved external symbol “__declspec(dllimport) public: bool __thiscall Notify::assert_failure(char const *,int,char const *)” (_imp?assert_failure@Notify@@QAE_NPBDH0@Z)

1>main.obj : error LNK2001: unresolved external symbol “__declspec(dllimport) public: static class Notify * __cdecl Notify::ptr(void)” (_imp?ptr@Notify@@SAPAV1@XZ)

I don’t know wich library I must add to the project… any ideas?

Try adding all of the Panda3D libraries. There are other forum posts with people asking similar questions.

David

libp3framework.lib
libpanda.lib
libpandafx.lib
libpandaexpress.lib
libp3dtool.lib
libp3dtoolconfig.lib
libp3pystub.lib
libp3direct.lib
Add them…

thanks!

is solved!