Vertexwahn

Results 52 comments of Vertexwahn

@Wito-1 Yes, I definitely accept contributions! What you describe sounds perfect! For me, it is also not so important to keep the old traditional WORKSPACE approach - if this does...

@Sayter99 I have no clue. Maybe you repost this in the bzlmod channel of Bazel on Slack

ARM support on Linux should be not to hard look for thing like this: ``` qt_toolchain( name = "qt_linux", data = [ "@qt_linux_x86_64//:moc", "@qt_linux_x86_64//:rcc", "@qt_linux_x86_64//:uic", ], moc_cmd = "$(location @qt_linux_x86_64//:moc)",...

@phaedon I use GLFW this way in my `WORKSPACE.bazel` file: ``` #------------------------------------------------------------- # GLFW #------------------------------------------------------------- GLFW_VERSION = "3.3.8" http_archive( name = "glfw", build_file = "//bazel:glfw.BUILD", sha256 = "f30f42e05f11e5fc62483e513b0488d5bceeab7d9c5da0ffe2252ad81816c713", strip_prefix =...

I recommend to go here with a minimal set that works - i.e. split this PR in a subset that works and get it merged.

Duplicate of #1377?

FYI: Abseil and Google Test have now a MODULE.bazel file. PR for gflags is open since Sep 16, 2023: https://github.com/gflags/gflags/pull/353

@tiago-lqt Feel free to add a `pkg_tar` target to the Bazel build. You can easily add `rules_pkg` be adding `bazel_dep(name = "rules_pkg", version = "0.10.1")` to `MODULE.bazel` file. In the...

@tiago-lqt `ImathConfig.h` is not part of the openexr repo. Some CMake magic fetches Imath if it is not on your system. Similar it is done on the Bazel side: https://github.com/bazelbuild/bazel-central-registry/blob/main/modules/imath/3.1.11/patches/add_build_file.patch....

`visibility = ["//visibility:public"]` is set -> https://github.com/bazelbuild/bazel-central-registry/blob/de00f8c4d582b105952c4ca687995e94decedbf8/modules/imath/3.1.11/patches/add_build_file.patch#L78 If you tell me what I should add there I can add it ;) Maybe something like ``` exports_files([ "some_heaer.h" ]) ``` is...