edited .bat to be able to be executed on win7. And added regex header...
This commit is contained in:
parent
7514ccd048
commit
14ed6385d6
|
@ -7,7 +7,9 @@ xcopy deps\x64 bin\x64 /S /Y
|
||||||
|
|
||||||
mkdir bin\x32d
|
mkdir bin\x32d
|
||||||
xcopy deps\x32 bin\x32d /S /Y
|
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
|
mkdir bin\x64d
|
||||||
xcopy deps\x64 bin\x64d /S /Y
|
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
|
|
@ -5,6 +5,7 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
|
#include <regex>
|
||||||
|
|
||||||
typedef std::string String;
|
typedef std::string String;
|
||||||
typedef std::wstring WString;
|
typedef std::wstring WString;
|
||||||
|
|
Loading…
Reference in New Issue