Removing or Uninstalling Project Data - Ravbug/wxWidgetsTemplate GitHub Wiki

Follow these instructions to remove compiled and other generated data these projects create as you use them.

macOS

  1. Open mac.xcodeproj in the template root.
  2. Press Product -> Clean Build Folder (or press Command+Shift+K)

Windows

Removing compiled app data:

  1. In Visual Studio, Press the Build -> Clean Solution menus, or right click your solution in the solution explorer and press Clean Solution. Repeat this for every configuration (Debug/Release, x86/x64)
  2. Navigate to wxWidgets\build\msw, and delete the .vs folder.

Removing compiled library data (For templates predating 9/27/19):

  1. Open wxWidgets\build\msw\ and open the SLN that you used to build the library, when following the steps here.
  2. In Visual Studio, Press the Build -> Clean Solution menus. Location of the Clean Solution menu

Linux

Removing compiled app data: make clean

Removing compiled library data: make clean-library

Remove both at the same time: make clean-all