Alex Beimler

Results 29 comments of Alex Beimler

* [x] Waiting for [build_cross_mingw](https://github.com/aminya/cpp_vcpkg_project/pull/15) task.

Installing `mingw` (in linux) itself seems to work ... but installing `powershell` in arch or building the cpp example in fedora didn't work. 1. Ubuntu-Mingw Build (+ powershell): ![image](https://github.com/aminya/setup-cpp/assets/22779737/c3f7b014-0760-4fc4-814e-44a2ae11e4f7) 2....

@aminya For the "arch linux + yay"-Problem, I would suggest to auto-detect some popular [AUR-Helper/pacman wrapper](https://wiki.archlinux.org/title/AUR_helpers#Pacman_wrappers). A CLI option for arch-linux-user would be also nice: ```bash --pacman-wrapper yay ```

> We can comment out the Fedora Mingw and Arch Mingw inside CI for now if the errors are not fixable. agree, the powershell problem is a bug of its...

Also thought about `const_cast`, but that's just ugly. I now just added an `engine::Registry& m_registry` as member and init it in the ctor ```cpp Game() : m_registry{m_container.service()}, m_dispatcher{m_container.service()}, ... {}...

Hello, yes of course you can add the library, you need can make an PR. As far as I see you also need to add CMake into your Project, cuz...

~~For Reference [4dbc52d](https://github.com/abeimler/ecs_benchmark/commit/4dbc52d929148a84e09cb1c649125cb077f6996d)~~ - Outdated, see development (https://github.com/abeimler/ecs_benchmark/pull/21)

> What I noticed so far (when cross compiling for the target board) is: > > * `clang-tidy` complains about unused compiler arguments > > ``` > [build] warning: argument...

> @abeimler Could you add some docs about Toolchains to the Readme? > > I'd like to tag a new release, but we should add some basic docs for the...

Run the docker commands from [README_docker.md](README_docker.md) ## Testing 1. Run `docker build -f ./.devcontainer/Dockerfile --tag=my_project:latest . && docker run -it my_project:latest` -> Building the base image, seems to work I...