I couldn't find where I can use .pro file in Visual Studio (It creates .pro file, but then no using it).

So I tried to do it with Qt Creator. Qt finds libraries,

Qt Code:
  1. TEMPLATE = app
  2. TARGET = newluaQt
  3. DESTDIR = ../Win32/Debug
  4. QT += core widgets gui
  5. CONFIG += debug
  6. LIBS += -L"$$_PRO_FILE_PWD_/lua/" -llua5.3.0
  7. DEFINES += WIN64 QT_DLL QT_WIDGETS_LIB
  8. INCLUDEPATH += ./GeneratedFiles \
  9. . \
  10. ./GeneratedFiles/Debug \
  11. ./lua
  12. DEPENDPATH += .
  13. MOC_DIR += ./GeneratedFiles/debug
  14. OBJECTS_DIR += debug
  15. UI_DIR += ./GeneratedFiles
  16. RCC_DIR += ./GeneratedFiles
  17. include(newluaQt.pri)
To copy to clipboard, switch view to plain text mode 

How do i realise: I tried to launch with "-llua5.3" for example. And Qt said me "Can't find lua5.3 lib", then I tried "-llua5.3.0" and Qt said me again about my linker error. How can I fix it? I'm already trying to solve it by a couple of weeks