David Dalcino

Results 91 comments of David Dalcino

I took another look at `Qt/*/ios/mkspecs/features/uikit/devices.py`, and here's what I've found so far: * The shebang line in this file, for every version of Qt that I have looked at...

Ok, I've gotten a little further, and here's what I've found: I was able to install Python 2, and convince the Python 2 files in Qt to use the right...

I've been trying to figure out this one as well. In the rltk repo, there's already an issue and a PR that appears to fix this problem: https://github.com/thebracket/bracket-lib/issues/116 https://github.com/thebracket/bracket-lib/pull/126 Hopefully,...

I agree; a CMake flag that people can set would be a great way to encourage our users to benchmark their code. Please note that it is trivial to add...

What method are you using to include the library in the application? There must be some way of keeping the namespaces of the two projects separate. One obvious solution would...

Would it be an option to use `ExternalProject_Add` (https://cmake.org/cmake/help/latest/module/ExternalProject.html)? I'm pretty sure that `add_subdirectory` leaks all of the variables present in the outer project's namespace to the inner project, and...

To make this work, some settings will need to be changed. This process is partially described in https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry. * We need to add a repository secret called `PAT`, with the...

> I think we should have multiple base containers for every combination of the provided variables that devcontainer can inherit from and we support. (e.g. ghcr.io/cpp_best_practices/cpp:focal:11:13, ghcr.io/cpp_best_practices/cpp:bionic:11:13 etc..) So that...

> Giving descriptive prefixes is even better! But what happens with the optional variables like ${USE_CLANG} and with the ${USE_ROOT} I added in my branch? I haven't looked at it...

According to https://en.cppreference.com/w/cpp/compiler_support, there are still C++20 features that are as yet unsupported by clang. GCC 11 and the current release of Visual Studio 2019 both have full support for...