Hi,<br><br>I need to set multiple symbols in one of my target of my project. I can't use add_definitions because I don't want to define those variable for all my targets, so I tried custom properties.<br><br>set_target_properties( target PROPERTIES DEFINE_SYMBOL VALUE1 VALUE2 ) doesn't work : the function doesn't expect this number of variables.<br>
<br>if I try : <br><br>set( var "VALUE1 VALUE2" ). <br>set_target_properties( target PROPERTIES DEFINE_SYMBOL ${var} ) <br><br>I get <br><br>c1xx : fatal error C1083: 'VALUE2': No such file or directory<br>
<br>I'm working with the microsoft compiler, and cmake 2.6.<br><br>Any thoughts ?<br><br>Regards,<br>--<br>Mehdi<br><br><br>