quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

buildconf.bat (646B)


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