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
- Open
mac.xcodeproj
in the template root. - Press
Product -> Clean Build Folder
(or press Command+Shift+K)
Windows
Removing compiled app data:
- In Visual Studio, Press the
Build -> Clean Solution
menus, or right click your solution in the solution explorer and pressClean Solution
. Repeat this for every configuration (Debug/Release, x86/x64) - Navigate to wxWidgets\build\msw, and delete the .vs folder.
Removing compiled library data (For templates predating 9/27/19):
- Open
wxWidgets\build\msw\
and open the SLN that you used to build the library, when following the steps here. - In Visual Studio, Press the
Build -> Clean Solution
menus.
Linux
Removing compiled app data: make clean
Removing compiled library data: make clean-library
Remove both at the same time: make clean-all