add generator options "nochar" and "noimstrv" according to issue #186

This commit is contained in:
sonoro1234
2023-03-24 17:23:28 +01:00
parent 2c8eab86f7
commit e25f9f6844
4 changed files with 27 additions and 5 deletions

View File

@@ -13,7 +13,7 @@
#process files
# arg[1] compiler name gcc, clang, or cl
# arg[2] options as words in one string: internal for imgui_internal generation, freetype for freetype generation, comments for comments generation
# arg[2] options as words in one string: internal for imgui_internal generation, freetype for freetype generation, comments for comments generation, nochar to skip char* function version, noimstrv to skip imstrv
# examples: "" "internal" "internal freetype" "comments internal"
# arg[3..n] name of implementations to generate and/or CLFLAGS (e.g. -DIMGUI_USER_CONFIG or -DIMGUI_USE_WCHAR32)
@@ -22,4 +22,4 @@ then
suffix='.exe'
fi
luajit$suffix ./generator.lua gcc "internal" glfw opengl3 opengl2 sdl2
luajit$suffix ./generator.lua gcc "internal noimstrv" glfw opengl3 opengl2 sdl2