The wxWidgets remote part

This remote part ships a recent wxWidgets release to your snap.

How to use

Merge the following snippet to your Snapcraft recipe:

parts:
  # If your application is built against Gtk3
  desktop-gtk3: # or equivalent
  wxwidgets-3-0-gtk3:

  # If your application is built against Gtk2
  desktop-gtk2:
  wxwidgets-3-0-gtk2:

Make sure you have included the desktop-launch launcher in your app launch command:

apps:
  _app_name_:
    command: desktop-launch application_command

The implementation

Snaps that use this part

1 Like

Thanks this is useful for my p7zip package! good job

1 Like