Undefined reference in Hello World example (Solved)

Hello!
I’m using Qt Creator on Linux as text editor using qmake…
After writing the hello world example i got some Undefined Reference for PandaFramework, i’m pretty sure i need to say compiler to look at some libraries…

What are the name of those libraries?
Thanks!

Update:
I figured out what are the libraries i guess these:

-lp3framework
-lpanda
-lpandafx
-lpandaexpress
-lp3dtoolconfig
-lp3dtool
-lp3direct

But compiler does not detect them it says not found for all them.

Update II Solved!.… This is the project file that works for Qt Creator IDE on Linux:

TEMPLATE = app
CONFIG += console c++11
CONFIG -= app_bundle
CONFIG -= qt

LIBS += -L"/usr/include/eigen3"
LIBS += -L"/usr/lib/x86_64-linux-gnu/panda3d"
LIBS += -lp3framework -lpanda -lpandafx -lpandaexpress -lp3dtoolconfig -lp3dtool -lp3pystub -lp3direct

SOURCES +=
main.cpp