Mohammed Alyousef
Mohammed Alyousef
That would be a great idea. Some are already listed on wikipedia and the FLTK website. I can also contribute to that list. Github provides a "Used By" heading in...
Thank you for sharing your app @CM-IV I'll update the list
Thank you for your kind words!
I'm working (when I have the chance) on an editor example to add to the fltk-rs/demos repo. The code can be found here: https://github.com/MoAlyousef/red It needs some more work, especially...
@MatthiasWM Thanks for working on this. In the `red` editor demo, I'm adding closable tabs to showcase that feature as well. It also has an embedded terminal if compiled with...
Thank you. terrific-audio-driver looks great, I'll have to give it a try. I've added it to the list.
Thank you. I've added Rustree to the showcase. The idea itself is interesting. I also tried building on linux and it does build: 
I don’t think it would be appropriate. If a developer decides to quit their own project, it’s their prerogative. Having other people’s code in the demos repo, might make them...
This is the same as this issue (check the last comment): https://github.com/cross-rs/cross/issues/1180 A workaround that I added to fltk-rs: ```rs if env::var("CROSS_SYSROOT").is_ok() { env::remove_var("CROSS_SYSROOT"); } ```
The `set(CMAKE_FIND_ROOT_PATH "$ENV{CROSS_SYSROOT}" "${CMAKE_PREFIX_PATH}")` seems wrong. CMAKE_PREFIX_PATH is empty by default, and is only filled if a path is given using `set(CMAKE_PREFIX_PATH some/path)` or using the command-line: `cmake -B bin...