-
I am currently using "gcc -I"\LuaScripts\raylib-lua-master\src" raylua_e.c myFile.zip" |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You are not supposed to use raylua_e source code to build your executable (and GCC has no clue on how raylua_e is designed and what to do with zip file). You need to either download a prebuild version of raylib-lua and drag and drop your zip file onto the raylua_e executable, or by command-line Or alternatively build raylib-lua using either classical |
Beta Was this translation helpful? Give feedback.
You are not supposed to use raylua_e source code to build your executable (and GCC has no clue on how raylua_e is designed and what to do with zip file).
You need to either download a prebuild version of raylib-lua and drag and drop your zip file onto the raylua_e executable, or by command-line
raylua_e myFile.zip
(or./raylua_e myFile.zip
depending on the operating system)Or alternatively build raylib-lua using either classical
make
(ormingw32-make
) or saphire and use the raylua_e in the same way as with prebuilt (e.g./raylua_e myFile.zip
)