From aa925d337083ef560fe676ded50ed784425fdc12 Mon Sep 17 00:00:00 2001 From: Tim Foley Date: Tue, 16 Jun 2020 09:54:06 -0700 Subject: Add a batch file for invoke premake This change adds `./premake.bat` to the repository, which users in Windows (64-bit) can use to conveniently invoke the copy of premake that is pulled via the `slang-binaries` submodule. It should be possible to pass whatever options you passed to `premake5.exe` through to `premake.bat`. E.g., if you invoke: ``` .\premake.bat vs2015 ``` then you should get the desired results for the project/solution files we want to check in. --- premake.bat | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 premake.bat diff --git a/premake.bat b/premake.bat new file mode 100644 index 000000000..d9f152e0f --- /dev/null +++ b/premake.bat @@ -0,0 +1,3 @@ +@echo off +set ROOT=%~dp0 +"%ROOT%\external\slang-binaries\premake\premake-5.0.0-alpha13\bin\windows-x64\premake5.exe" %* -- cgit v1.2.3