replaced imgui with cimgui shared lib to use with c# bindings

This commit is contained in:
2025-04-29 02:37:15 +05:00
parent 72f47c297e
commit d5531ce370
12 changed files with 67 additions and 43 deletions

View File

@@ -15,7 +15,7 @@ SRC_CPP="$(find src -name '*.cpp')"
# See cbuild/example_dependency_configs
DEPENDENCY_CONFIGS_DIR='dependencies'
# List of dependency config files in DEPENDENCY_CONFIGS_DIR separated by space.
ENABLED_DEPENDENCIES='precompiled resources imgui src-csharp'
ENABLED_DEPENDENCIES='precompiled resources cimgui src-csharp'
# OBJDIR structure:
# ├── objects/ - Compiled object files. Cleans on each call of build task
@@ -27,7 +27,7 @@ OUTDIR="bin"
STATIC_LIB_FILE="lib$PROJECT.a"
# header include directories
INCLUDE="-I./dependencies/imgui -I./dependencies/include -I./dependencies/include/SDL2"
INCLUDE="-I./dependencies/cimgui/imgui -I./dependencies/include -I./dependencies/include/SDL2"
# OS-specific options
case "$OS" in