Hi to all!

I am trying to compile qt 4.7.0 app that integrades LUA scripting language in Qt Creator 2.0.1 under Windows 7 Ultimate. At compile time, I get following errors:
debug/mainwindow.o:C:\Users\HP2\Desktop\ABTeamTestApp-build-desktop/../ABTeamTestAppWC/mainwindow.cpp:32: undefined reference to `luaL_newstate' debug/mainwindow.o:C:\Users\HP2\Desktop\ABTeamTestApp-build-desktop/../ABTeamTestAppWC/mainwindow.cpp:35: undefined reference to `luaL_openlibs'
collect2: ld returned 1 exit status
mingw32-make[1]: *** [debug\ABTeamTestApp.exe] Error 1
mingw32-make: *** [debug] Error 2
The process "C:/Qt/2010.05/mingw/bin/mingw32-make.exe" exited with code %2.
Error while building project ABTeamTestApp (target: Desktop)
When executing build step 'Make'
When executing build step 'Make'.
Now, the reason for error is following method:
Qt Code:
  1. void MainWindow::initLUA()
  2.  
  3. {
  4.  
  5. lua_State* L=lua_open();
  6.  
  7. if(!L)
  8.  
  9. qFatal("LUA cannot be initialized.");
  10.  
  11. luaL_openlibs(L);
  12.  
  13. }
To copy to clipboard, switch view to plain text mode 
I am checking my .pro file (for including dlls and libs)
and I am getting nowhere. Here is .pro file:
Qt Code:
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2011-02-10T10:21:14
  4. #
  5. #-------------------------------------------------
  6.  
  7. QT += core gui
  8.  
  9. TARGET = ABTeamTestApp
  10. TEMPLATE = app
  11. CONFIG += ordered
  12.  
  13. SOURCES += main.cpp\
  14. mainwindow.cpp \
  15. centralwidget.cpp \
  16.  
  17. HEADERS += mainwindow.h \
  18. centralwidget.h \
  19. lua/include/lualib.h \
  20. lua/include/luaconf.h \
  21. lua/include/lua.hpp \
  22. lua/include/lua.h \
  23. lua/include/lauxlib.h
  24.  
  25. win32:LIBS += \
  26. -L"lua/lib/lua5.1.lib" \
  27. -L"lua/lib/lua51.lib" \
  28. -L"lua/lib/lua5.1.dll" \
  29. -L"lua/lib/lua51.dll"
To copy to clipboard, switch view to plain text mode 
Can someone help me with problem?

Sincerely,
Marko