blob: 8a063dd7cff25269a7271d5cff6a9c7e30bbe4ed [file] [log] [blame]
Jens Geyerfea00ac2014-10-01 02:22:48 +02001@echo off
2rem /*
3rem * Licensed to the Apache Software Foundation (ASF) under one
4rem * or more contributor license agreements. See the NOTICE file
5rem * distributed with this work for additional information
6rem * regarding copyright ownership. The ASF licenses this file
7rem * to you under the Apache License, Version 2.0 (the
8rem * "License"); you may not use this file except in compliance
9rem * with the License. You may obtain a copy of the License at
10rem *
11rem * http://www.apache.org/licenses/LICENSE-2.0
12rem *
13rem * Unless required by applicable law or agreed to in writing,
14rem * software distributed under the License is distributed on an
15rem * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16rem * KIND, either express or implied. See the License for the
17rem * specific language governing permissions and limitations
18rem * under the License.
19rem */
20
21setlocal
22if "%HOMEDRIVE%"=="" goto MISSINGVARS
23if "%HOMEPATH%"=="" goto MISSINGVARS
24if "%HAXEPATH%"=="" goto NOTINSTALLED
25
26set path=%HAXEPATH%;%HAXEPATH%\..\neko;%path%
27
28rem # invoke Thrift comnpiler
Jens Geyere5ff9a82014-11-11 01:39:38 +010029thrift -r -gen haxe ..\..\..\test\ThriftTest.thrift
Jens Geyer76283922022-06-11 14:24:33 +020030thrift -r -gen haxe ..\..\..\test\ConstantsDemo.thrift
Jens Geyere5ff9a82014-11-11 01:39:38 +010031thrift -r -gen haxe ..\..\..\contrib\async-test\aggr.thrift
32thrift -r -gen haxe ..\..\..\lib\rb\benchmark\Benchmark.thrift
Jens Geyerfea00ac2014-10-01 02:22:48 +020033if errorlevel 1 goto STOP
34
35rem # invoke Haxe compiler for all targets
36for %%a in (*.hxml) do (
37 rem * filter Python, as it is not supported by Haxe 3.1.3 (but will be in 3.1.4)
38 if not "%%a"=="python.hxml" (
39 echo --------------------------
40 echo Building %%a ...
41 echo --------------------------
42 haxe --cwd . %%a
43 )
44)
45
46
47echo.
48echo done.
49pause
50goto eof
51
52:NOTINSTALLED
53echo FATAL: Either Haxe is not installed, or the HAXEPATH variable is not set.
54pause
55goto eof
56
57:MISSINGVARS
58echo FATAL: Unable to locate home folder.
59echo.
60echo Both HOMEDRIVE and HOMEPATH need to be set to point to your Home folder.
61echo The current values are:
62echo HOMEDRIVE=%HOMEDRIVE%
63echo HOMEPATH=%HOMEPATH%
64pause
65goto eof
66
67:STOP
68pause
69goto eof
70
71:eof