We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
make.bat
make.sh
1 parent 5f1226d commit a8ce5a0Copy full SHA for a8ce5a0
make.bat
@@ -0,0 +1,9 @@
1
+git submodule update --init --recursive
2
+cd 3rd\luamake
3
+call compile\build.bat
4
+cd ..\..
5
+IF "%~1"=="" (
6
+ call 3rd\luamake\luamake.exe rebuild
7
+) ELSE (
8
+ call 3rd\luamake\luamake.exe rebuild --platform %1
9
+)
make.sh
@@ -0,0 +1,11 @@
+#!/usr/bin/env bash
+
+pushd 3rd/luamake
+./compile/build.sh
+popd
+if [ -z "$1" ]; then
+ 3rd/luamake/luamake rebuild
+else
10
+ 3rd/luamake/luamake rebuild --platform "$1"
11
+fi
0 commit comments