Tool/software:
I am working on a project in Code Composer Studio (CCS) where I need to dynamically set the output filename based on specific #define values in a header file. My goal is to:
- Define some CCS build variables that will hold these
#definevalues. - Automatically populate these variables with the
#definevalues after or during the compilation. - Access these populated build variables in the post-build step to modify the output filename
Is there a way to configure CCS to achieve this, such as by setting specific compiler options, preprocessor settings, or environment configurations, so that I can directly pass the #define values into CCS build variables?