Create custom *.bin file name
Posted: Sat Nov 09, 2024 8:42 pm
Hello everyone.
How to use Cmake commands (or some other way) to create your own custom named *.bin file.
I defined the variables inside CmakeList.tx:
After successful compilation, I want to create a bin file, e.g. MY_PROJECT_NAME_MY_PROJECT_VER.bin
Tnx
How to use Cmake commands (or some other way) to create your own custom named *.bin file.
I defined the variables inside CmakeList.tx:
Code: Select all
set(application_name "Device_Test")
set(application_version "1.0")
set(MY_PROJECT_VER "${application_version}")
set(MY_PROJECT_NAME "${application_name}")
Tnx