Olivier Le Doeuff

Results 144 comments of Olivier Le Doeuff

I will have a look at that if you want ;)

> I like this! I recently did the same thing in fmtlib [here](https://github.com/fmtlib/fmt/pull/3205). Don't forget you need to bump the minimum CMake version to 3.8 to ensure that this compile...

Ok, will do. I will go with `ENABLE_DATE_INSTALL` so that it match what is already there.

Libsodium doesn't support CMake, you can have a look at what I did couple of years ago (or cpm fetch this one, no sure it work tho): https://github.com/OlivierLDff/libsodium

Another possible workaround is to install from git: ```toml imagededup = { git = "https://github.com/idealo/imagededup", rev = "4e0b15f4cd82bcfa321eb280b843e57ebc5ff154" } ``` I can confirm I have the same issue on ubuntu...

My approach has been to use [flake-compat](https://github.com/edolstra/flake-compat) `shell.nix`: ```nix (import ( let lock = builtins.fromJSON (builtins.readFile ./flake.lock); in fetchTarball { url = lock.nodes.flake-compat.locked.url or "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz"; sha256 = lock.nodes.flake-compat.locked.narHash; } )...

I gave a shot at the `direnv` extension, works perfectly. @HendrikHuebner here is how I managed. Content of `.envrc` (taken from [here](https://gist.github.com/arianvp/8f80c23a3410d27746fb97a6563d9677) ```bash #!/bin/sh #If already set (e.g. in github...

Qml now comes with a TreeView component, better rewrite your own stuff with that. Qaterial TreeView is more a hack, that was done before qml treeview became available.

Qolm is based on a fork, so I kept the original license. But it seems I can just change to mit like any of my projects. Is it a problem...

You should have a look at https://github.com/OlivierLDff/QaterialGallery as a starting point