-
Notifications
You must be signed in to change notification settings - Fork 7
Removing or Uninstalling Project Data
Ravbug edited this page May 20, 2020
·
8 revisions
Follow these instructions to remove compiled and other generated data these projects create as you use them.
- Open
mac.xcodeprojin the template root. - Press
Product -> Clean Build Folder(or press Command+Shift+K)
Removing compiled app data:
- In Visual Studio, Press the
Build -> Clean Solutionmenus, 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 Solutionmenus.
Removing compiled app data: make clean
Removing compiled library data: make clean-library
Remove both at the same time: make clean-all