From f31f636343b83521f074054f53790b750cdcc650 Mon Sep 17 00:00:00 2001 From: Adam Simpkins Date: Mon, 30 Mar 2020 19:24:43 -0700 Subject: [PATCH] add a build.bat file for building on Windows Summary: Add a `build.bat` file for building on Windows, to parallel the `build.sh` file for Linux + Mac systems. Reviewed By: wez Differential Revision: D20715564 fbshipit-source-id: 8e792d2d41baaf6366e8f259b5adf700cb07ad3a --- build.bat | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 build.bat diff --git a/build.bat b/build.bat new file mode 100644 index 0000000000..034de66a28 --- /dev/null +++ b/build.bat @@ -0,0 +1,17 @@ +@REM Copyright (c) Facebook, Inc. and its affiliates. +@REM +@REM This software may be used and distributed according to the terms of the +@REM GNU General Public License version 2. + +@echo off +SETLOCAL +if exist %~dp0\..\..\opensource\fbcode_builder\getdeps.py ( + set GETDEPS=%~dp0\..\..\opensource\fbcode_builder\getdeps.py +) else if exist %~dp0\build\fbcode_builder\getdeps.py ( + set GETDEPS=%~dp0\build\fbcode_builder\getdeps.py +) else ( + echo "error: unable to find getdeps.py" + exit 1 +) + +python3.exe %GETDEPS% build eden %*