ragsaq

Results 9 comments of ragsaq

Maybe it has something to do with HiDPI?

I also get this in Ubuntu 22.04 simply following the instructions in the readme to build all the examples. in my case, I'm using the images that comes with lxd:...

Hi, I think that is because probably you need to enable nested virtualization in virtual box: https://serverfault.com/questions/1049528/how-to-enable-nested-virtualization-in-order-to-use-virtualbox-inside-of-a-kvm-v lxc uses the hypervisor too, so you can't mix lxc with virtualBox on...

Hi @frang75, what is the best way to use nappGui without adding our project to the demo folder? I want to do a project where I can write a cmake...

Hi @frang75, I tested the last commit to see how the new cmake is. nappgui install creates: - bin - cmake - inc - lib - prj I want to...

That's fine. The folder structure that vcpkg uses is the same that linux uses. see /usr/*** and /usr/local/*** and you will find the same names.

I second this. Here's a possible update to the arch.hxx file to support mingw: src\sewer\arch.hxx ```c #if defined (_WINDOWS) || defined (__MINGW32__) #if defined (_MSC_VER) && _MSC_VER

I'm trying to install nappgui with vcpkg. I have success in windows and linux (not perfect) Working example (no resources): [hellocpp](https://github.com/ragsaq/nappgui_hellocpp) Broken example (with resources): [products](https://github.com/ragsaq/nappgui_products) to do this, I...

Thank you! wxwidgets also is in vcpkg and they also have a `nrc` binary to compile resources. maybe you can have a look at how they structure things. qt too...