-
Notifications
You must be signed in to change notification settings - Fork 7
Renaming Your App
Ravbug edited this page May 20, 2020
·
10 revisions
- Open
mac.xcodeproj - Select the top level item
macin the left sidebar, then press General, and expand the side pane - Select
macDynamicormacStaticand press Enter. - Type the new name. You can exclude the words 'dynamic' or 'static' from the new name.
- Repeat for the other target.
- Build the app to ensure that it works.
- Open
windows.sln - Right click
applicationin the solution explorer, and pressProperties
- Change the
ConfigurationandPlatformcombo boxes toAll ConfigurationsandAll Platformsrespectively - Under
Configuration Properties > General, Find the field titledTarget Name. Change the value to the new name of your executable.
- Press
Build -> Rebuild Solution. Your old app will be replaced by the new one with the new name.
- Open
makefilein a plain-text editor - On line 3, set
target =to a new name of your choosing - Run
make clean && maketo rebuild the app with the new name, or delete the executable inlinux-build/and runmaketo partial rebuild with the new name.