+
+ <!-- DigitalMars make is braindead, it doesn't have conditional
+ processing: -->
+ <if cond="FORMAT=='dmars'">
+ <set var="RUNTIME_LIBS">static</set>
+ <set var="BUILD">debug</set>
+ <set var="SHARED">0</set>
+ <set var="WXUNIV">0</set>
+ <set var="UNICODE">1</set>
+ <!-- Free version does not distribute OpenGL,
+ in commercial distribution better use dmars_smake format -->
+ <set var="USE_OPENGL">0</set>
+ </if>
+
+ <!-- No need for wxUniv on embedded devices (yet): -->
+ <if cond="FORMAT=='msevc4prj' or (FORMAT=='msvs2005prj' and MSVS_PLATFORMS=='pocketpc2003') or (FORMAT=='msvs2008prj' and MSVS_PLATFORMS=='pocketpc2003')">
+ <set var="WXUNIV">0</set>
+ <!-- Uploading debug reports from PDAs seems impractical -->
+ <set var="USE_QA">0</set>
+ <set var="MONOLITHIC">1</set> <!-- sic! -->
+ <set var="USE_OPENGL">0</set> <!-- need OpenGL ES support first -->
+ <!-- RTTI and exceptions need separate cccrtti.lib with eVC4 -->
+ <if cond="FORMAT=='msevc4prj'">
+ <set var="USE_RTTI">0</set>
+ <set var="USE_EXCEPTIONS">0</set>
+ </if>
+ </if>
+
+ <!-- Need for wxUniv within wxMGL: -->
+ <if cond="FORMAT!='autoconf' and TOOLKIT=='MGL'">
+ <set var="WXUNIV">1</set>
+ <set var="USE_THREADS">0</set>
+ <set var="RUNTIME_LIBS">static</set>
+ </if>
+