2022-11-04 05:29 AM
Hello,
How can I rename the project-name in STM32CubeIDE ?
If I right click on the project(name) and choose rename I get the following error, see attached screenshot.
Thank you
Solved! Go to Solution.
2022-11-04 06:08 AM
Hello @pk84,
Edit the name in the .project file. By default, the name is the root path of the application, but can be changed.
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>new_name</name>
<comment/>
<projects>
</projects>
Best regards,
Foued
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
2022-11-04 06:08 AM
Hello @pk84,
Edit the name in the .project file. By default, the name is the root path of the application, but can be changed.
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>new_name</name>
<comment/>
<projects>
</projects>
Best regards,
Foued
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
2022-11-04 06:13 AM
ok thanks, will all other files like .launch be renamed automatically? I think there are for sure some more files with the project name and reference to it?
2022-11-04 06:19 AM
It's just necessary to change the name of the project and everything works fine :beaming_face_with_smiling_eyes:
Hope my answer helped you!
When your question is answered, please close this topic by choosing Select as Best.
This will help other users find that answer faster.
Foued
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
2022-11-08 06:04 AM
Ok that works, but just another, similar question:
Is it possible to change the name of the .launch file? And where can I change the names of the generated .elf/.hex./list/.map ... files?
Thank you