Using Embedded Wizard Pro 13.05, I am trying to print which of the 3 profiles I am using.
In the Project composer the profiles are named like this : STM32, Win32, Win32Simulator.
Here is the code I'm using to print the selected platform, nothing special :
$if $prototyper && $platform == *.STM32.*
trace "STM32";
$endif
$if $prototyper && $platform == *.Win32.*
trace "Win32";
$endif
$if $prototyper && $platform == *.Win32Simulator.*
trace "Win32simulator";
$endif
The problem is that the only one that gets printed is "STM32", while the others are ignored.