copy bgl.h ..\include
Running post-build step: default
Command execution failed...
Project : Console application
Compiler : GNU GCC Compiler (called directly)
Directory : D:\moises\mre\
--------------------------------------------------------------------------------
Switching to target: default
mingw32-g++.exe -I"C:\\MinGW\\include" -c "mre.cpp" -o ".objs\\mre.o"
mingw32-g++.exe -L"C:\\MinGW\\lib" -o "mre.exe" -L"C:\\MinGW\\lib" ".objs\\mre.o"
copy mre.cpp ..
Command execution failed...
mingw32-g++.exe -I"C:\\MinGW\\include" -c "mre.cpp" -o ".objs\\mre.o"
mingw32-g++.exe -L"C:\\MinGW\\lib" -o "mre.exe" -L"C:\\MinGW\\lib" ".objs\\mre.o"
Actually, under windows, I think ShellExecute() is called in this situation (by wxWidgets, under the hood).No, CreateProcessEx is used. That's why copy does not work. If you execute update.bat, the default application for .bat will be started (which is cmd). But if you execute copy, it fails because there is no copy.exe anywhere (copy is a builtin command).