I have two related questions:
I am on a Linux Mint OS and trying to install wxWidgets from
vcpkgand having problems. Has anyone achieved to install wxWidgets from vcpkg on Linux? Are there additional libraries I have to install before it can succeed?wxWidgets 3.3.0is out but I cannot see it invcpkgrepositories. Is there a plan to release it there soon?
genpfault
52.3k12 gold badges94 silver badges153 bronze badges
lang-cpp
suddenly apt-get install wxgtk. Every Linux flavor has its own repo and it's own way to install software. 3.3.0 is just out and will be released in the Linux world after proper testing. In the mean time you can build it yourself.cd wxwidgets && mkdir buildGTK && cd buildGTK && ../configure --enable-debug && make -jN && sudo make install.makeand then usewx-configto get thew appropriate compiler/linker options.