qt 4.8.6 binary files from:
http://sourceforge.net/projects/qtx64/files/?source=navbar
I'm sooo lucky

after one day qt binnary project removed

May be someone need this. just this dll file is enough for run my application.This is my dll compiled in w8 x64 with qt 4.8.6. This my compiled dll is x64.
http://www.delphiturkiye.com/files/Qt4Pas5.7zmingw64 files from:
http://www.drangon.org/mingw/qt4pas5 source from
http://users.telenet.be/Jan.Van.hijfte/qtforfpc/fpcqt4.htmlhow to from:
http://wiki.freepascal.org/Qt_Interface#Quick_start_guide_for_Windowsqt bin and lib folder hast be added system PATH
for test, in terminal type
>qmake -query
this result for qt. if paths is wrong, try execute "qtbinpatcher.exe"
>make -v
has to be x64 mingw64 or under qt folder same name
>where make.exe
show which one is in path
in QT4Pas.pro's folder, (I mean qt4pas source folder)
>qmake QT4Pas.pro
>make
thats all. just need more time for compile if without error.
if get a this error (keyword is -fpermissive):
......
loses precision [-fpermissive]
return (unsigned int) ((QWidget *)handle)->winId();
...
open QT4Pas.pro file with any text editor, and add this lines in QT4Pas.pro file
....
OBJECTS_DIR = tmp
QMAKE_CFLAGS += -fpermissive
QMAKE_CXXFLAGS += -fpermissive
QMAKE_LFLAGS += -fpermissive
....
and re do
>qmake QT4Pas.pro
>make
I did like this, and it works for me.