blob: 72bf35664364bf75061cf2d8e7c22398971cd68a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
@echo off
set root=%~dp0%
set src_root=%root%src
set bin_root=%root%bin
set lib_root=%root%lib
set target_configuration=Release
if [%_BUILDARCH%] == [AMD64] goto :target_platform_x64
if [%_BUILDARCH%] == [x86] goto :target_platform_x86
echo Unsupported %%_BUILDARCH%% (supported build architectures: AMD64, x86)
exit /b -1
:target_platform_x64
set target_platform=x64
exit /b 0
:target_platform_x86
set target_platform=x86
exit /b 0
|