diff options
| author | Indrajith K L | 2025-11-07 04:46:23 +0530 |
|---|---|---|
| committer | GitHub | 2025-11-07 04:46:23 +0530 |
| commit | 839b3793a5ec4af58d4dabae85e8f8a211ace258 (patch) | |
| tree | 37b07d916f921ddb028fbd729fedddb5d310c7d6 /docs/BUILD_SCRIPTS.md | |
| parent | 8c4b587a2347a911d165f0b4afcce116970ad7e5 (diff) | |
| parent | f3373d08c74e36b2161e1f4e4eef6aa7197352e0 (diff) | |
| download | reilua-enhanced-839b3793a5ec4af58d4dabae85e8f8a211ace258.tar.gz reilua-enhanced-839b3793a5ec4af58d4dabae85e8f8a211ace258.tar.bz2 reilua-enhanced-839b3793a5ec4af58d4dabae85e8f8a211ace258.zip | |
Merge pull request #9 from cooljith91112/docs/html-documentation-improvements
docs: Add HTML documentation generator and improve documentation
Diffstat (limited to 'docs/BUILD_SCRIPTS.md')
| -rw-r--r-- | docs/BUILD_SCRIPTS.md | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/docs/BUILD_SCRIPTS.md b/docs/BUILD_SCRIPTS.md index 875ef0b..191bd37 100644 --- a/docs/BUILD_SCRIPTS.md +++ b/docs/BUILD_SCRIPTS.md @@ -19,24 +19,24 @@ Fast iteration during game development with external Lua files and assets. ### Usage -**Windows:** +Windows: ```cmd scripts\build_dev.bat ``` -**Linux/Unix:** +Linux/Unix: ```bash chmod +x scripts/build_dev.sh scripts/build_dev.sh ``` ### Features -- ✅ No embedding - loads Lua and assets from file system -- ✅ Fast build times -- ✅ Edit code and assets without rebuilding -- ✅ Automatic cleanup of embedded files -- ✅ Warns if Lua files or assets are in build directory -- ✅ Optional clean build: `scripts\build_dev.bat clean` or `scripts/build_dev.sh clean` +- No embedding - loads Lua and assets from file system +- Fast build times +- Edit code and assets without rebuilding +- Automatic cleanup of embedded files +- Warns if Lua files or assets are in build directory +- Optional clean build: `scripts\build_dev.bat clean` or `scripts/build_dev.sh clean` ### Output - Development executable: `build/ReiLua.exe` @@ -67,25 +67,25 @@ copy ..\your_game\assets\* assets\ ### Usage -**Windows:** +Windows: ```cmd scripts\build_release.bat ``` -**Linux/Unix:** +Linux/Unix: ```bash chmod +x scripts/build_release.sh scripts/build_release.sh ``` ### Features -- ✅ Embeds all Lua files from `build/` directory -- ✅ Embeds all assets from `build/assets/` folder -- ✅ Creates single-file executable -- ✅ Release optimization enabled -- ✅ Verifies Lua files and assets before building -- ✅ Shows summary of embedded files after build -- ✅ Interactive confirmation before building +- Embeds all Lua files from `build/` directory +- Embeds all assets from `build/assets/` folder +- Creates single-file executable +- Release optimization enabled +- Verifies Lua files and assets before building +- Shows summary of embedded files after build +- Interactive confirmation before building ### Output - Release executable: `build/ReiLua.exe` |
