Can anyone help me. This is probably a stupid question but im a newby. So, I was doing the first example program in the panda manual with this code:
#include "pandaFramework.h"
#include "pandaSystem.h"
PandaFramework framework;
int main (int argc, char *argv[])
{
framework.open_framework (argc, argv);
framework.set_window_title ("My Panda3D Window");
WindowFramework *window = framework.open_window();
if (window != (WindowFramework *)NULL)
{
nout << "opened the window successfully!\n";
window->enable_keyboard();
window->setup_trackball();
framework.main_loop();
}
else {nout << "could not load the window!\n";}
framework.close_framework();
return (0);
}
and I included the include files from panda 1.7.2 and python 2.7 and it shows fatal error LNK1104: cannot open file 'python27.lib' when I try to build the project in Microsoft Visual c++ 2010 Express. It compiles fine though. I exactly dont know how to run it once you compile like in dev-cpp. I also tried including the python include file that comes with panda and it showed the same "fatal error" except with python26.lib.
So will someone explain what I have to do about the error and whether to run the program I have to click build project because there is no execute or run button under the build option on the toolbar.
