gkoreman

Results 4 issues of gkoreman

### Version/Branch of Dear ImGui: Version 1.90.2, Branch: docking ### Back-ends: imgui_impl_glfw.cpp + imgui_impl_opengl3.cpp ### Compiler, OS: macOS + Clang ### Full config/build information: ### Details: **My Issue/Question:** This question...

docking

Simply opening the editor will cause DefaultGame.ini to be checked out even though no changes are made to the file.

enhancement
question

Fixes #2477 Add use_runfiles aspect_hint aspect_hints = ["@build_bazel_rules_apple//apple:use_runfiles"], This aspect_hint will tell the resource aspect to gather and bundle runfiles from this aspect_hint. ``` cc_library( name = "libapp", srcs =...

Building a macos_application with a cc_library does not include runfiles. ``` cc_library( name = "libapp", srcs = ["main.cpp",], data = [":data.txt"], ) macos_application( name = "app_macos", deps = [":libapp"], )...