This is my build.bat
@echo off
setlocal
call "%VS120COMNTOOLS%"\\vsvars32.bat
echo Deleting old exe...
del build_win32\dist\bin\Whitedrop_d.exe
cd build_win32
echo Building As Debug
msbuild /detailedsummary /p:Configuration=Debug /p:Platform=x86 /t:build ALL_BUILD.vcxproj
echo Done building, Exiting.
cd dist\bin\
Whitedrop_d.exe
cd ../../../
endlocal
But when I run everything works perfectly, it builds and run, but nothing is logged when running my exe. If I try to add cout << 'hi world' << endl
in main it compiles and run but I don't see Hi world in cmd prompt (but the GUI shows). Is there a way to show cmd output in same window?