]> git.saurik.com Git - wxWidgets.git/commitdiff
added COMPILER_PREFIX support to wxpresets
authorVáclav Slavík <vslavik@fastmail.fm>
Mon, 19 Oct 2009 13:57:25 +0000 (13:57 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Mon, 19 Oct 2009 13:57:25 +0000 (13:57 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62458 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

build/bakefiles/wx.bkl
build/bakefiles/wxpresets/presets/wx.bkl
build/bakefiles/wxpresets/presets/wx_presets.py [new file with mode: 0644]

index 1265e4dc77da6fe68b4ee12cb57ceb040096b670..6d6995515a8e7749aef6dd6a622fec94d91f97d2 100644 (file)
@@ -87,7 +87,7 @@
 
         <data-files>
             <srcdir>$(SRCDIR)/build/bakefiles/wxpresets/presets</srcdir>
-            <files>wx.bkl wx_unix.bkl wx_win32.bkl wx_xrc.bkl</files>
+            <files>wx.bkl wx_unix.bkl wx_win32.bkl wx_xrc.bkl wx_presets.py</files>
             <install-to>$(DATADIR)/bakefile/presets</install-to>
         </data-files>
 
index eae18ed22048a9b815e047d3044fced1609a0cf9..ff06b7f6fd803c7428e07f222d9ebf781279667d 100644 (file)
 
     <requires version="0.2.2"/>
 
+    <using module="wx_presets"/>
 
     <!-- this variable identifies the version of the wx presets.
          this is changed only when major changes to wxpresets take place.
         <if cond="WX_DEBUG=='0' and WX_UNICODE=='1'">u</if>
     </set>
 
-    <!-- FIXME: how to make it a make var? -->
-    <set var="COMPILER_PREFIX">$(COMPILER)</set>
+    <set var="COMPILER_PREFIX" make_var="1">$(COMPILER)</set>
 
 
 
diff --git a/build/bakefiles/wxpresets/presets/wx_presets.py b/build/bakefiles/wxpresets/presets/wx_presets.py
new file mode 100644 (file)
index 0000000..60af474
--- /dev/null
@@ -0,0 +1,11 @@
+
+# We use 'COMPILER_PREFIX' option in places where bakefile doesn't like it, so
+# we must register a substitution function for it that provides additional
+# knowledge about the option (in this case that it does not contain dir
+# separators and so utils.nativePaths() doesn't have to do anything with it):
+
+from utils import addSubstituteCallback
+
+def __noopSubst(name, func, caller):
+    return '$(%s)' % name
+addSubstituteCallback('COMPILER_PREFIX', __noopSubst)