summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Foley <tfoley@nvidia.com>2020-06-16 09:54:06 -0700
committerTim Foley <tfoley@nvidia.com>2020-06-16 09:54:06 -0700
commitaa925d337083ef560fe676ded50ed784425fdc12 (patch)
tree8f5efb4fc938c6751dbabf3048c8ed693c88dd31
parent8ec293cfa7c767d652fee683de29629685420f63 (diff)
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.
-rw-r--r--premake.bat3
1 files changed, 3 insertions, 0 deletions
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" %*