We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3ce084 commit dd9ac81Copy full SHA for dd9ac81
2 files changed
.github/workflows/build.yaml
@@ -48,6 +48,13 @@ jobs:
48
- name: Make gradlew executable
49
run: chmod +x ./gradlew
50
51
+ - name: Generate raylib-lua binding required files
52
+ run: |
53
+ cd app/src/main/cpp/deps/raylib-lua/
54
+ make
55
+ cp src/autogen/*.c ../../
56
+ cd ../../../../../../
57
+
58
- name: Build debug APK
59
run: ./gradlew assembleDebug
60
env:
app/src/main/cpp/raylua.c
@@ -35,8 +35,8 @@
35
#define PHYSACDEF static
36
// #include <physac.h>
37
38
-// #include "bind.c"
39
-#include "autogen/boot.c"
+#include "bind.c"
+#include "boot.c"
40
41
extern const char *raylua_boot_str;
42
0 commit comments