September 27, 2005
"Derek Parnell" <derek@psych.ward> wrote in message news:tc69ho4jyzx2.1oozf8r2g2yhz$.dlg@40tude.net...
> Okay, so the work around is something like ...
>
>  Example 1
>   $(D_CODE // This app needs the MyGUI.lib library to be used. )
>   $(D_CODE version(build) { pragma(link, MyGUI); } )
>
>   Example 2
>   $(D_CODE // This app needs the a DB library and TCP library to be
used. )
>   $(D_CODE version(build) { pragma(link, EuDB, TCP4Win); } )

You could also do:

Example 2
 $(D_CODE
    $(BR)
      // This app needs the a DB library and TCP library to be used.
      version(build) { pragma(link, EuDB, TCP4Win); }
 )


1 2 3 4
Next ›   Last »