1@echo off
2REM
3REM
4REM This batch file must be used to set up a git tree to build on
5REM systems where there is no autotools support (i.e. Microsoft).
6REM
7REM This file is not included nor needed for c-ares' release
8REM archives, neither for c-ares' daily snapshot archives.
9REM
10REM Copyright (C) The c-ares project and its contributors
11REM SPDX-License-Identifier: MIT
12
13if exist GIT-INFO goto start_doing
14ECHO ERROR: This file shall only be used with a c-ares git checkout.
15goto end_all
16:start_doing
17
18if not exist include\ares_build.h.dist goto end_ares_build_h
19copy /Y include\ares_build.h.dist include\ares_build.h
20:end_ares_build_h
21
22:end_all
23
24