Patch #1320 2006-08-14 07:47
pchris
Added WX_CFG macro to the paths- Download
- 1320-Added_WX_CFG_m.patch (1.5 KB)
Index: E:/GPL/CodeBlocks/plugins/contrib/byogames/byogames.cbp
===================================================================
--- E:/GPL/CodeBlocks/plugins/contrib/byogames/byogames.cbp (revision 2842)
+++ E:/GPL/CodeBlocks/plugins/contrib/byogames/byogames.cbp (working copy)
@@ -34,7 +35,7 @@
<Add option="-DwxUSE_UNICODE" />
<Add option="-DBUILDING_PLUGIN" />
<Add directory="$(#WX.include)" />
- <Add directory="$(#WX.lib)\gcc_dll\msw$(WX_SUFFIX)" />
+ <Add directory="$(#WX.lib)\gcc_dll$(WX_CFG)\msw$(WX_SUFFIX)" />
<Add directory="$(#WX)\contrib\include" />
<Add directory="$(#CB.include)" />
<Add directory="$(#CB.include)\tinyxml" />
@@ -50,7 +51,7 @@
<Linker>
<Add library="wxmsw26$(WX_SUFFIX)" />
<Add library="codeblocks" />
- <Add directory="$(#WX.lib)\gcc_dll" />
+ <Add directory="$(#WX.lib)\gcc_dll$(WX_CFG)" />
<Add directory="$(#CB.lib)" />
<Add directory="$(#CB)\devel" />
<Add directory="$(#CB)\sdk\tinyxml" />
Index: E:/GPL/CodeBlocks/plugins/contrib/keybinder/keybinder.cbp
===================================================================
--- E:/GPL/CodeBlocks/plugins/contrib/keybinder/keybinder.cbp (revision 2842)
+++ E:/GPL/CodeBlocks/plugins/contrib/keybinder/keybinder.cbp (working copy)
@@ -49,7 +49,7 @@
<Add library="wxmsw26$(WX_SUFFIX)" />
<Add directory="$(#CB)\devel" />
<Add directory="$(#CB.lib)" />
- <Add directory="$(#WX.lib)\gcc_dll" />
+ <Add directory="$(#WX.lib)\gcc_dll$(WX_CFG)" />
</Linker>
<Unit filename="cbkeybinder.cpp">
<Option compilerVar="CPP" />
History
pchris 2006-08-14 07:47
The WX_CFG macro was missing in some project files, so I added it.
mortis 2006-08-28 17:55
I've sent in another patch (#1423) which I now see posesses the same changes as this one plus several more, all related to the WX_CFG macro though.
killerbot 2006-10-10 12:23
applied
svn 3058