Oh! You're right. I have the same folder into the folder in test. Then for only copy all files of dir, I do comment this line; wxCopyDir(sFileFrom, sFileTo); const wxString sFileFrom = sFrom + sNext; const wxString sFileTo = sTo + sNext; if (wxDirExists(sFileFrom)) { //wxCopyDir(sFileFrom, sFileTo);...
YES!! Now I have been able to build the initial window project :) And the exe only occupies 7MB, and adding all the libraries. I've tried the resulting exe on windows 7 and windows 10. Just copy paste and it works fine. Thank you thank you thank you I use this line to compile: mingw32-make -f makefi...
Hello, I'm trying to compile wxWidgets for cb on windows but in a static way. What I want is that everything is in a single exe and also try to see if you add only the libraries you need to make the file fit the fair. That's why I put the SHARED=0 parameter Well I've done about 7 different compilati...
Thanks for reply :) It seems that I have already solved it. I have other IDES linked to the installation of MinGW and I think the problem is coming. As I do not want to ignore the other IDES I have done the following: I downloaded the version of code blocks that includes minGW I have installed codeb...
Hi, I've tried compiling wxWidgets-3.1.0 to use it with codeblocks After cleaning using the line with the clean command, and delete all folder of C:\wxWidgets-3.1.0\build\msw\ I try to compile with the line mingw32-make -f makefile.gcc USE_XRC=1 SHARED=1 MONOLITHIC=1 BUILD=debug UNICODE=1 USE_OPENGL...