Bonjour,

Je suis actuellement sous Ubuntu 12.04 et je suis sur un projet de c++ incluant de la SFML. J'aimerais aujourd'hui passer ce projet sur Windows, et donc faire un executable .exe. J'utilise mingw, voila comment je compile:

i586-mingw32msvc-g++ *.cpp -o mon_executable.exe -lsfml-graphics -lsfml-window -lsfml-system -lsfml-audio -Wall -Wextra -Werror -O2

Il compile et me sort donc bien mon .exe.
Or quand je l'execute "wine ./mon_executable.exe"
J'ai cette erreur la,

err:module:import_dll Library sfml-graphics-2.dll (which is needed by L"Z:\\home\\toto\\totoprojet\\mon_executable.exe") not found
err:module:import_dll Library sfml-system-2.dll (which is needed by L"Z:\\home\\toto\\totoprojet\\mon_executable.exe") not found
err:module:import_dll Library sfml-window-2.dll (which is needed by L"Z:\\home\\toto\\totoprojet\\tmon_executable.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"Z:\\home\\toto\\totoprojet\\mon_executable.exe" failed, status c0000135

Quelqu'un peut-il m'aider s'il vous plait ?