Fix for cross compilation

This commit is contained in:
Alexey.Golubev
2017-05-23 14:50:07 +03:00
parent 8197fb8900
commit 634509ae28

View File

@ -6,6 +6,10 @@ if defined ProgramFiles(x86) (
SET platform=win_64
)
if defined TARGET (
SET platform=%TARGET%
)
if not exist "%platform%" (
md "%platform%"
)