> On Feb 4, 2016, at 7:58 AM, marko kiiskila <[email protected]> wrote:
>
> Hi Paul,
>
>> On Feb 3, 2016, at 6:12 PM, [email protected] wrote:
>
>> Also, since I had a few dozen of these, it would be nice to have the
>> egg.cflags: token accept the \ symbol to extend to multiple lines.
>
> I concur. We should make it easier to have multiple lines of input for cflags.
Ok, I made a change to newt.
You should be able to specify the cflags either by saying:
egg.cflags.FS: -DFS_PRESENT -DANOTHER_DEFINE
or on separate lines:
egg.cflags.FS:
- -DFS_PRESENT
- -DANOTHER_DEFINE
looks like following works as well:
egg.cflags.FS:
-DFS_PRESENT
-DANOTHER_DEFINE
So no ‘\’ needed, just newline.
Let me know how it goes,
M