1
0
Fork 0

edited .bat to be able to be executed on win7. And added regex header...

This commit is contained in:
Abel Romero Pérez 2019-05-22 20:48:50 +02:00
parent 7514ccd048
commit 14ed6385d6
2 changed files with 5 additions and 2 deletions

View File

@ -7,7 +7,9 @@ xcopy deps\x64 bin\x64 /S /Y
mkdir bin\x32d
xcopy deps\x32 bin\x32d /S /Y
xcopy deps\x32d bin\x32d /S /Y REM copy the snowman.dll dummy and overwrite the release version
xcopy deps\x32d bin\x32d /S /Y
REM copy the snowman.dll dummy and overwrite the release version
mkdir bin\x64d
xcopy deps\x64 bin\x64d /S /Y
xcopy deps\x64d bin\x64d /S /Y REM copy the snowman.dll dummy and overwrite the release version
xcopy deps\x64d bin\x64d /S /Y
REM copy the snowman.dll dummy and overwrite the release version

View File

@ -5,6 +5,7 @@
#include <vector>
#include <sstream>
#include <iomanip>
#include <regex>
typedef std::string String;
typedef std::wstring WString;