basic eVC support

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34663 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2005-06-15 22:17:53 +00:00
parent 858cab30be
commit 965122c49f

View File

@@ -91,10 +91,14 @@ FIXME: this template has (at least) the following bugs:
</option> </option>
</if> </if>
<if cond="not isdefined('WX_DEBUG')"> <set var="WX_DEBUG_VARIABLE" overwrite="0">WX_DEBUG</set>
<set var="WX_DEBUG_VALUE_ON">1</set>
<set var="WX_DEBUG_VALUE_OFF">0</set>
<if cond="not isdefined(WX_DEBUG_VARIABLE)">
<set var="WX_DEBUG_DEFAULT" overwrite="0">1</set> <set var="WX_DEBUG_DEFAULT" overwrite="0">1</set>
<option name="WX_DEBUG"> <option name="$(WX_DEBUG_VARIABLE)">
<values>0,1</values> <values>$(WX_DEBUG_VALUE_OFF),$(WX_DEBUG_VALUE_ON)</values>
<values-description>Release,Debug</values-description> <values-description>Release,Debug</values-description>
<default-value>$(WX_DEBUG_DEFAULT)</default-value> <default-value>$(WX_DEBUG_DEFAULT)</default-value>
<description> <description>
@@ -128,24 +132,28 @@ FIXME: this template has (at least) the following bugs:
<!-- The debug define we need with win32 compilers --> <!-- The debug define we need with win32 compilers -->
<!-- (on Linux, the wx-config program is used). --> <!-- (on Linux, the wx-config program is used). -->
<set var="WXDEBUG_DEFINE"> <set var="WXDEBUG_DEFINE">
<if cond="WX_DEBUG=='1'">__WXDEBUG__</if> <if cond="$(WX_DEBUG_VARIABLE)==$(WX_DEBUG_VALUE_ON)">__WXDEBUG__</if>
</set> </set>
<!-- These are handy ways of dealing with the --> <!-- These are handy ways of dealing with the -->
<!-- extensions in the library names of the --> <!-- extensions in the library names of the -->
<!-- wxWindows library. --> <!-- wxWindows library. -->
<set var="WXLIBPOSTFIX"> <set var="WXLIBPOSTFIX">
<if cond="WX_DEBUG=='1' and WX_UNICODE=='1'">ud</if> <if cond="$(WX_DEBUG_VARIABLE)==$(WX_DEBUG_VALUE_ON) and WX_UNICODE=='1'">ud</if>
<if cond="WX_DEBUG=='1' and WX_UNICODE=='0'">d</if> <if cond="$(WX_DEBUG_VARIABLE)==$(WX_DEBUG_VALUE_ON) and WX_UNICODE=='0'">d</if>
<if cond="WX_DEBUG=='0' and WX_UNICODE=='1'">u</if> <if cond="$(WX_DEBUG_VARIABLE)==$(WX_DEBUG_VALUE_OFF) and WX_UNICODE=='1'">u</if>
</set> </set>
<set var="WX3RDPARTYLIBPOSTFIX"> <set var="WX3RDPARTYLIBPOSTFIX">
<if cond="WX_DEBUG=='1'">d</if> <if cond="$(WX_DEBUG_VARIABLE)==$(WX_DEBUG_VALUE_ON)">d</if>
</set>
<set var="WXCPU">
<if cond="FORMAT=='msevc4prj'">_$(CPU)</if>
</set> </set>
<set var="WXLIBPATH"> <set var="WXLIBPATH">
<if cond="WX_SHARED=='0'">$(DIRSEP)lib$(DIRSEP)$(COMPILER)_lib</if> <if cond="WX_SHARED=='0'">$(DIRSEP)lib$(DIRSEP)$(COMPILER)$(WXCPU)_lib</if>
<if cond="WX_SHARED=='1'">$(DIRSEP)lib$(DIRSEP)$(COMPILER)_dll</if> <if cond="WX_SHARED=='1'">$(DIRSEP)lib$(DIRSEP)$(COMPILER)$(WXCPU)_dll</if>
</set> </set>
<set var="WXLIBINCLUDE">$(WXLIBPATH)$(DIRSEP)msw$(WXLIBPOSTFIX)</set> <set var="WXLIBINCLUDE">$(WXLIBPATH)$(DIRSEP)msw$(WXLIBPOSTFIX)</set>
@@ -232,7 +240,7 @@ FIXME: this template has (at least) the following bugs:
</if> </if>
<!-- Non-borland, on the other hand... --> <!-- Non-borland, on the other hand... -->
<if cond="FORMAT!='borland'"> <if cond="FORMAT not in ['borland','msevc4prj']">
<sys-lib>kernel32</sys-lib> <sys-lib>kernel32</sys-lib>
<sys-lib>user32</sys-lib> <sys-lib>user32</sys-lib>
<sys-lib>gdi32</sys-lib> <sys-lib>gdi32</sys-lib>