├── 3rd ├── assimp.lua ├── basis_universal.lua ├── bgfx.lua ├── bimg.lua ├── bnet.lua ├── box2d.lua ├── bx.lua ├── cgltf.lua ├── curl.lua ├── efsw.lua ├── enet.lua ├── enkiTS.lua ├── fcpp.lua ├── freetype2.lua ├── imgui.lua ├── jolt.lua ├── libdom.lua ├── libparserutils.lua ├── librdkafka.lua ├── libsvgtiny.lua ├── libtess2.lua ├── libuv.lua ├── libwapcaplet.lua ├── libxml2.lua ├── lua.lua ├── mbedtls.lua ├── meshoptimizer.lua ├── minilua.lua ├── msdf_atlas_gen.lua ├── msdfgen.lua ├── nanosvg.lua ├── nanosvg2.lua ├── nanovg.lua ├── ogg.lua ├── openssl.lua ├── raw_pdb.lua ├── sasl2.lua ├── simple-svg.lua ├── soloud.lua ├── sparsehash.lua ├── spdlog.lua ├── squish.lua ├── stb.lua ├── subprocess.h.lua ├── ta_lib.lua ├── tbb.lua ├── tinygltf.lua ├── tinyspline.lua ├── tinyxml2.lua ├── tomlplusplus.lua ├── ufbx.lua ├── unittest-cpp.lua ├── usockets.lua ├── uwebsockets.lua ├── vg_renderer.lua ├── vorbis.lua ├── wolfssl.lua ├── xxHash.lua ├── zfp.lua ├── zlib.lua └── zstd.lua ├── LICENSE ├── README.md ├── compat └── emscripten │ └── emscripten.h ├── configurations.lua ├── data ├── all_build.bat ├── asset_build_scripts.bat ├── asset_compile_data.bat └── asset_compile_tools.bat ├── deploy.lua ├── deploy ├── android │ ├── AndroidManifest.xml │ ├── build.bat │ ├── build.xml │ ├── build_with_comments.xml │ ├── clean.bat │ ├── jni │ │ ├── Android.mk │ │ └── Application.mk │ └── res │ │ └── values │ │ └── strings.xml ├── durango │ ├── Appxmanifest.xml │ └── Package.appxmanifest ├── res │ ├── logo_square.png │ ├── logo_square.svg │ ├── logo_wide.png │ └── logo_wide.svg ├── winphone │ ├── Appxmanifest.xml │ └── Package.appxmanifest └── winstore │ ├── Appxmanifest.xml │ └── Package.appxmanifest ├── embedded_files.lua ├── embedded_shader_prebuild.lua ├── project_3rd.lua ├── project_cmdtool.lua ├── project_game.lua ├── project_lib.lua ├── project_lib_sample.lua ├── project_lib_test.lua ├── project_lib_tool.lua ├── project_qt.lua ├── qtprebuild.lua ├── qtpresets6.lua ├── rtm_paths.lua ├── set_env_android.bat ├── toolchain.lua └── tools ├── bin ├── darwin │ ├── genie │ ├── inageconv │ ├── ninja │ └── shaderc ├── linux │ ├── genie │ ├── imageconv │ ├── ninja │ ├── shaderc │ └── txt2cs └── windows │ ├── bin2c.exe │ ├── genie.exe │ ├── gperf.exe │ ├── imageconv.exe │ ├── libintl3.dll │ ├── msys-2.0.dll │ ├── msys-iconv-2.dll │ ├── msys-intl-8.dll │ ├── ninja.exe │ ├── regex2.dll │ ├── sed.exe │ ├── shaderc.exe │ └── txt2cs.exe └── src ├── bin2c ├── genie │ ├── bin2c.lua │ └── genie.lua └── src │ └── bin2c.cpp ├── imageconv ├── genie │ ├── genie.lua │ └── imageconv.lua └── src │ ├── fpng.cpp │ ├── fpng.h │ ├── main.cpp │ └── stb_image_resize2.h └── txt2cs ├── genie ├── genie.lua └── txt2cs.lua └── src └── txt2cs.cpp /3rd/assimp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/assimp.lua -------------------------------------------------------------------------------- /3rd/basis_universal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/basis_universal.lua -------------------------------------------------------------------------------- /3rd/bgfx.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/bgfx.lua -------------------------------------------------------------------------------- /3rd/bimg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/bimg.lua -------------------------------------------------------------------------------- /3rd/bnet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/bnet.lua -------------------------------------------------------------------------------- /3rd/box2d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/box2d.lua -------------------------------------------------------------------------------- /3rd/bx.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/bx.lua -------------------------------------------------------------------------------- /3rd/cgltf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/cgltf.lua -------------------------------------------------------------------------------- /3rd/curl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/curl.lua -------------------------------------------------------------------------------- /3rd/efsw.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/efsw.lua -------------------------------------------------------------------------------- /3rd/enet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/enet.lua -------------------------------------------------------------------------------- /3rd/enkiTS.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/enkiTS.lua -------------------------------------------------------------------------------- /3rd/fcpp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/fcpp.lua -------------------------------------------------------------------------------- /3rd/freetype2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/freetype2.lua -------------------------------------------------------------------------------- /3rd/imgui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/imgui.lua -------------------------------------------------------------------------------- /3rd/jolt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/jolt.lua -------------------------------------------------------------------------------- /3rd/libdom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/libdom.lua -------------------------------------------------------------------------------- /3rd/libparserutils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/libparserutils.lua -------------------------------------------------------------------------------- /3rd/librdkafka.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/librdkafka.lua -------------------------------------------------------------------------------- /3rd/libsvgtiny.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/libsvgtiny.lua -------------------------------------------------------------------------------- /3rd/libtess2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/libtess2.lua -------------------------------------------------------------------------------- /3rd/libuv.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/libuv.lua -------------------------------------------------------------------------------- /3rd/libwapcaplet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/libwapcaplet.lua -------------------------------------------------------------------------------- /3rd/libxml2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/libxml2.lua -------------------------------------------------------------------------------- /3rd/lua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/lua.lua -------------------------------------------------------------------------------- /3rd/mbedtls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/mbedtls.lua -------------------------------------------------------------------------------- /3rd/meshoptimizer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/meshoptimizer.lua -------------------------------------------------------------------------------- /3rd/minilua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/minilua.lua -------------------------------------------------------------------------------- /3rd/msdf_atlas_gen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/msdf_atlas_gen.lua -------------------------------------------------------------------------------- /3rd/msdfgen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/msdfgen.lua -------------------------------------------------------------------------------- /3rd/nanosvg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/nanosvg.lua -------------------------------------------------------------------------------- /3rd/nanosvg2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/nanosvg2.lua -------------------------------------------------------------------------------- /3rd/nanovg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/nanovg.lua -------------------------------------------------------------------------------- /3rd/ogg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/ogg.lua -------------------------------------------------------------------------------- /3rd/openssl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/openssl.lua -------------------------------------------------------------------------------- /3rd/raw_pdb.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/raw_pdb.lua -------------------------------------------------------------------------------- /3rd/sasl2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/sasl2.lua -------------------------------------------------------------------------------- /3rd/simple-svg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/simple-svg.lua -------------------------------------------------------------------------------- /3rd/soloud.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/soloud.lua -------------------------------------------------------------------------------- /3rd/sparsehash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/sparsehash.lua -------------------------------------------------------------------------------- /3rd/spdlog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/spdlog.lua -------------------------------------------------------------------------------- /3rd/squish.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/squish.lua -------------------------------------------------------------------------------- /3rd/stb.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/stb.lua -------------------------------------------------------------------------------- /3rd/subprocess.h.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/subprocess.h.lua -------------------------------------------------------------------------------- /3rd/ta_lib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/ta_lib.lua -------------------------------------------------------------------------------- /3rd/tbb.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/tbb.lua -------------------------------------------------------------------------------- /3rd/tinygltf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/tinygltf.lua -------------------------------------------------------------------------------- /3rd/tinyspline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/tinyspline.lua -------------------------------------------------------------------------------- /3rd/tinyxml2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/tinyxml2.lua -------------------------------------------------------------------------------- /3rd/tomlplusplus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/tomlplusplus.lua -------------------------------------------------------------------------------- /3rd/ufbx.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/ufbx.lua -------------------------------------------------------------------------------- /3rd/unittest-cpp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/unittest-cpp.lua -------------------------------------------------------------------------------- /3rd/usockets.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/usockets.lua -------------------------------------------------------------------------------- /3rd/uwebsockets.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/uwebsockets.lua -------------------------------------------------------------------------------- /3rd/vg_renderer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/vg_renderer.lua -------------------------------------------------------------------------------- /3rd/vorbis.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/vorbis.lua -------------------------------------------------------------------------------- /3rd/wolfssl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/wolfssl.lua -------------------------------------------------------------------------------- /3rd/xxHash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/xxHash.lua -------------------------------------------------------------------------------- /3rd/zfp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/zfp.lua -------------------------------------------------------------------------------- /3rd/zlib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/zlib.lua -------------------------------------------------------------------------------- /3rd/zstd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/3rd/zstd.lua -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/README.md -------------------------------------------------------------------------------- /compat/emscripten/emscripten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/compat/emscripten/emscripten.h -------------------------------------------------------------------------------- /configurations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/configurations.lua -------------------------------------------------------------------------------- /data/all_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/data/all_build.bat -------------------------------------------------------------------------------- /data/asset_build_scripts.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/data/asset_build_scripts.bat -------------------------------------------------------------------------------- /data/asset_compile_data.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/data/asset_compile_data.bat -------------------------------------------------------------------------------- /data/asset_compile_tools.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/data/asset_compile_tools.bat -------------------------------------------------------------------------------- /deploy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/deploy.lua -------------------------------------------------------------------------------- /deploy/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/deploy/android/AndroidManifest.xml -------------------------------------------------------------------------------- /deploy/android/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/deploy/android/build.bat -------------------------------------------------------------------------------- /deploy/android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/deploy/android/build.xml -------------------------------------------------------------------------------- /deploy/android/build_with_comments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/deploy/android/build_with_comments.xml -------------------------------------------------------------------------------- /deploy/android/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/deploy/android/clean.bat -------------------------------------------------------------------------------- /deploy/android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/deploy/android/jni/Android.mk -------------------------------------------------------------------------------- /deploy/android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/deploy/android/jni/Application.mk -------------------------------------------------------------------------------- /deploy/android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/deploy/android/res/values/strings.xml -------------------------------------------------------------------------------- /deploy/durango/Appxmanifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/deploy/durango/Appxmanifest.xml -------------------------------------------------------------------------------- /deploy/durango/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/deploy/durango/Package.appxmanifest -------------------------------------------------------------------------------- /deploy/res/logo_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/deploy/res/logo_square.png -------------------------------------------------------------------------------- /deploy/res/logo_square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/deploy/res/logo_square.svg -------------------------------------------------------------------------------- /deploy/res/logo_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/deploy/res/logo_wide.png -------------------------------------------------------------------------------- /deploy/res/logo_wide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/deploy/res/logo_wide.svg -------------------------------------------------------------------------------- /deploy/winphone/Appxmanifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/deploy/winphone/Appxmanifest.xml -------------------------------------------------------------------------------- /deploy/winphone/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/deploy/winphone/Package.appxmanifest -------------------------------------------------------------------------------- /deploy/winstore/Appxmanifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/deploy/winstore/Appxmanifest.xml -------------------------------------------------------------------------------- /deploy/winstore/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/deploy/winstore/Package.appxmanifest -------------------------------------------------------------------------------- /embedded_files.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/embedded_files.lua -------------------------------------------------------------------------------- /embedded_shader_prebuild.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/embedded_shader_prebuild.lua -------------------------------------------------------------------------------- /project_3rd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/project_3rd.lua -------------------------------------------------------------------------------- /project_cmdtool.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/project_cmdtool.lua -------------------------------------------------------------------------------- /project_game.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/project_game.lua -------------------------------------------------------------------------------- /project_lib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/project_lib.lua -------------------------------------------------------------------------------- /project_lib_sample.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/project_lib_sample.lua -------------------------------------------------------------------------------- /project_lib_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/project_lib_test.lua -------------------------------------------------------------------------------- /project_lib_tool.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/project_lib_tool.lua -------------------------------------------------------------------------------- /project_qt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/project_qt.lua -------------------------------------------------------------------------------- /qtprebuild.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/qtprebuild.lua -------------------------------------------------------------------------------- /qtpresets6.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/qtpresets6.lua -------------------------------------------------------------------------------- /rtm_paths.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/rtm_paths.lua -------------------------------------------------------------------------------- /set_env_android.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/set_env_android.bat -------------------------------------------------------------------------------- /toolchain.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/toolchain.lua -------------------------------------------------------------------------------- /tools/bin/darwin/genie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/darwin/genie -------------------------------------------------------------------------------- /tools/bin/darwin/inageconv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/darwin/inageconv -------------------------------------------------------------------------------- /tools/bin/darwin/ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/darwin/ninja -------------------------------------------------------------------------------- /tools/bin/darwin/shaderc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/darwin/shaderc -------------------------------------------------------------------------------- /tools/bin/linux/genie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/linux/genie -------------------------------------------------------------------------------- /tools/bin/linux/imageconv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/linux/imageconv -------------------------------------------------------------------------------- /tools/bin/linux/ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/linux/ninja -------------------------------------------------------------------------------- /tools/bin/linux/shaderc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/linux/shaderc -------------------------------------------------------------------------------- /tools/bin/linux/txt2cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/linux/txt2cs -------------------------------------------------------------------------------- /tools/bin/windows/bin2c.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/windows/bin2c.exe -------------------------------------------------------------------------------- /tools/bin/windows/genie.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/windows/genie.exe -------------------------------------------------------------------------------- /tools/bin/windows/gperf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/windows/gperf.exe -------------------------------------------------------------------------------- /tools/bin/windows/imageconv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/windows/imageconv.exe -------------------------------------------------------------------------------- /tools/bin/windows/libintl3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/windows/libintl3.dll -------------------------------------------------------------------------------- /tools/bin/windows/msys-2.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/windows/msys-2.0.dll -------------------------------------------------------------------------------- /tools/bin/windows/msys-iconv-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/windows/msys-iconv-2.dll -------------------------------------------------------------------------------- /tools/bin/windows/msys-intl-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/windows/msys-intl-8.dll -------------------------------------------------------------------------------- /tools/bin/windows/ninja.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/windows/ninja.exe -------------------------------------------------------------------------------- /tools/bin/windows/regex2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/windows/regex2.dll -------------------------------------------------------------------------------- /tools/bin/windows/sed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/windows/sed.exe -------------------------------------------------------------------------------- /tools/bin/windows/shaderc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/windows/shaderc.exe -------------------------------------------------------------------------------- /tools/bin/windows/txt2cs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/bin/windows/txt2cs.exe -------------------------------------------------------------------------------- /tools/src/bin2c/genie/bin2c.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/src/bin2c/genie/bin2c.lua -------------------------------------------------------------------------------- /tools/src/bin2c/genie/genie.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/src/bin2c/genie/genie.lua -------------------------------------------------------------------------------- /tools/src/bin2c/src/bin2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/src/bin2c/src/bin2c.cpp -------------------------------------------------------------------------------- /tools/src/imageconv/genie/genie.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/src/imageconv/genie/genie.lua -------------------------------------------------------------------------------- /tools/src/imageconv/genie/imageconv.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/src/imageconv/genie/imageconv.lua -------------------------------------------------------------------------------- /tools/src/imageconv/src/fpng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/src/imageconv/src/fpng.cpp -------------------------------------------------------------------------------- /tools/src/imageconv/src/fpng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/src/imageconv/src/fpng.h -------------------------------------------------------------------------------- /tools/src/imageconv/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/src/imageconv/src/main.cpp -------------------------------------------------------------------------------- /tools/src/imageconv/src/stb_image_resize2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/src/imageconv/src/stb_image_resize2.h -------------------------------------------------------------------------------- /tools/src/txt2cs/genie/genie.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/src/txt2cs/genie/genie.lua -------------------------------------------------------------------------------- /tools/src/txt2cs/genie/txt2cs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/src/txt2cs/genie/txt2cs.lua -------------------------------------------------------------------------------- /tools/src/txt2cs/src/txt2cs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RudjiGames/build/HEAD/tools/src/txt2cs/src/txt2cs.cpp --------------------------------------------------------------------------------