From: Francesco M. <fr...@us...> - 2007-04-24 14:29:50
|
Update of /cvsroot/wxlua/wxLua/build/bakefiles/presets In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv17226/presets Added Files: wx.bkl wx_unix.bkl wx_win32.bkl Log Message: use presets directory name otherwise bakefile_gen cannot find them --- NEW FILE: wx_win32.bkl --- <?xml version="1.0" ?> <!-- $Id: wx_win32.bkl,v 1.1 2007/04/24 14:29:46 frm Exp $ --> <!-- Original source: http://wiki.wxwidgets.org/wiki.pl?Bakefile --> <!-- Modified by: Francesco Montorsi <fr...@us...> --> <!-- Vaclav Slavik <vs...@fa...> to better fit into Bakefile's presets --> <!-- Creation date: 6/9/2004 --> <!-- Last revision: 22/1/2005 off-CVS --> <!-- $Id: wx_win32.bkl,v 1.1 2007/04/24 14:29:46 frm Exp $ --> <makefile> <!-- OPTIONS --> <!-- --> <!-- These are essentially the configurations you --> <!-- want in bakefile. --> <!-- --> <!-- In MSVC these are the different build --> <!-- configurations you can have (in the build menu), --> <!-- and in autoconf is enabled with enable-xxx=xx. --> <!-- For other compilers a separate configuration --> <!-- file is created (such as config.gcc on gcc) --> <!-- which has several options a user can modify. --> <!-- --> <!-- Note that the above only happens if an option --> <!-- is not constant, i.e. if it cannot be determined --> <!-- by bakefile itself. --> <!-- Also note that for 'autoconf' format these options --> <!-- are only useful when used together with wxpresets.m4 --> <!-- macro file which contains macros for detecting the --> <!-- option values for wx-based projects. See wxpresets.m4 --> <!-- comments for more info. --> <!-- HELPER VARIABLES --> <!-- --> <!-- The unicode define we want. By default bakefile --> <!-- makes variables an empty string, so if unicode --> <!-- is not defined $(UNICODE_DEFINE) would expand --> <!-- to nothing (literally). --> <set var="WXUNICODE_DEFINE"> <if cond="WX_UNICODE=='1'">_UNICODE</if> </set> <!-- The debug define we need with win32 compilers --> <!-- (on Linux, the wx-config program is used). --> <set var="WXDEBUG_DEFINE"> <if cond="WX_DEBUG=='1'">__WXDEBUG__</if> </set> <!-- These are handy ways of dealing with the --> <!-- extensions in the library names of the --> <!-- wxWindows library. --> <set var="WX3RDPARTYLIBPOSTFIX"> <if cond="WX_DEBUG=='1'">d</if> </set> <set var="WXCPU"> <if cond="FORMAT=='msevc4prj'">_$(CPU)</if> </set> <set var="WXLIBPATH"> <if cond="WX_SHARED=='0'">$(DIRSEP)lib$(DIRSEP)$(COMPILER)$(WXCPU)_lib</if> <if cond="WX_SHARED=='1'">$(DIRSEP)lib$(DIRSEP)$(COMPILER)$(WXCPU)_dll</if> </set> <!-- under Unix this is an option (detected at configure-time); under Windows this is not an user option! --> <set var="WX_PORT"> <if cond="FORMAT=='msevc4prj'">wince</if> <if cond="FORMAT!='msevc4prj'">msw</if> </set> <set var="WXLIBINCLUDE">$(WXLIBPATH)$(DIRSEP)$(WX_PORT)$(WXLIBPOSTFIX)</set> <!-- All the possible mixes for the wx library names --> <set var="WXLIB_BASE_NAME"> <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='0'">wxbase$(WX_VERSION)</if> <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='1'">wxbase$(WX_VERSION)d</if> <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='0'">wxbase$(WX_VERSION)u</if> <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='1'">wxbase$(WX_VERSION)ud</if> <!-- the trick used to support monolithic builds is here: when the <wx-lib>base</wx-lib> tag is found, and user selected WX_MONOLITHIC=1, then the base library is translated to the monolithic library --> <if cond="WX_MONOLITHIC=='1' and WX_UNICODE=='0' and WX_DEBUG=='0'">wx$(WX_PORT)$(WX_VERSION)</if> <if cond="WX_MONOLITHIC=='1' and WX_UNICODE=='0' and WX_DEBUG=='1'">wx$(WX_PORT)$(WX_VERSION)d</if> <if cond="WX_MONOLITHIC=='1' and WX_UNICODE=='1' and WX_DEBUG=='0'">wx$(WX_PORT)$(WX_VERSION)u</if> <if cond="WX_MONOLITHIC=='1' and WX_UNICODE=='1' and WX_DEBUG=='1'">wx$(WX_PORT)$(WX_VERSION)ud</if> </set> <!-- Libraries whose name is prefixed with 'wxbase' --> <define-global-tag name="define-wxbase-lib-name"> <set var="WXLIB_$(value.upper())_NAME"> <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='0'"> wxbase$(WX_VERSION)_$(value) </if> <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='1'"> wxbase$(WX_VERSION)d_$(value) </if> <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='0'"> wxbase$(WX_VERSION)u_$(value) </if> <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='1'"> wxbase$(WX_VERSION)ud_$(value) </if> </set> </define-global-tag> <define-wxbase-lib-name>net</define-wxbase-lib-name> <define-wxbase-lib-name>xml</define-wxbase-lib-name> <define-wxbase-lib-name>odbc</define-wxbase-lib-name> <!-- Libraries whose name is prefixed with 'wx' only --> <define-global-tag name="define-wxlib-name"> <set var="WXLIB_$(value.upper())_NAME"> <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='0'"> wx$(WX_PORT)$(WX_VERSION)_$(value) </if> <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='0' and WX_DEBUG=='1'"> wx$(WX_PORT)$(WX_VERSION)d_$(value) </if> <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='0'"> wx$(WX_PORT)$(WX_VERSION)u_$(value) </if> <if cond="WX_MONOLITHIC=='0' and WX_UNICODE=='1' and WX_DEBUG=='1'"> wx$(WX_PORT)$(WX_VERSION)ud_$(value) </if> </set> </define-global-tag> <define-wxlib-name>core</define-wxlib-name> <define-wxlib-name>media</define-wxlib-name> <define-wxlib-name>xrc</define-wxlib-name> <define-wxlib-name>html</define-wxlib-name> <define-wxlib-name>adv</define-wxlib-name> <define-wxlib-name>qa</define-wxlib-name> <define-wxlib-name>dbgrid</define-wxlib-name> <define-wxlib-name>gl</define-wxlib-name> <define-wxlib-name>aui</define-wxlib-name> <define-wxlib-name>richtext</define-wxlib-name> <!-- WX TEMPLATE --> <!-- --> <!-- --> <!-- While not required, templates make your --> <!-- bakefiles much more readable. Templates, in --> <!-- essence, are abstract classes like c++. --> <!-- --> <!-- Your build targets "inherit" the template, --> <!-- along with the info associated with the template --> <!-- --> <!-- wxWidgets LIBRARY/APP TEMPLATE --> <!-- --> <!-- The "base class" of all our build targets --> <!-- This links with the appropriate native --> <!-- libraries required by the platform, the libraries --> <!-- we want for our stuff, and the wxWindows libs. --> <!-- this tag is used to include wx libraries: --> <define-tag name="wx-lib" rules="exe,dll,module"> <if cond="value=='base'"><sys-lib>$(WXLIB_BASE_NAME)</sys-lib></if> <if cond="value=='core'"><sys-lib>$(WXLIB_CORE_NAME)</sys-lib></if> <if cond="value=='net'"><sys-lib>$(WXLIB_NET_NAME)</sys-lib></if> <if cond="value=='xml'"><sys-lib>$(WXLIB_XML_NAME)</sys-lib></if> <if cond="value=='odbc'"><sys-lib>$(WXLIB_ODBC_NAME)</sys-lib></if> <if cond="value=='media'"><sys-lib>$(WXLIB_MEDIA_NAME)</sys-lib></if> <if cond="value=='xrc'"><sys-lib>$(WXLIB_XRC_NAME)</sys-lib></if> <if cond="value=='html'"><sys-lib>$(WXLIB_HTML_NAME)</sys-lib></if> <if cond="value=='adv'"><sys-lib>$(WXLIB_ADV_NAME)</sys-lib></if> <if cond="value=='gl'"><sys-lib>$(WXLIB_GL_NAME)</sys-lib></if> <if cond="value=='dbgrid'"><sys-lib>$(WXLIB_DBGRID_NAME)</sys-lib></if> <if cond="value=='qa'"><sys-lib>$(WXLIB_QA_NAME)</sys-lib></if> <if cond="value=='aui'"><sys-lib>$(WXLIB_AUI_NAME)</sys-lib></if> <if cond="value=='richtext'"><sys-lib>$(WXLIB_RICHTEXT_NAME)</sys-lib></if> <!-- wx-lib can be used also to link against contrib libraries (which always have the same name, regardless of WX_MONOLITHIC value) --> <if cond="value in CONTRIBLIB_LIST.split()"> <sys-lib>wx$(WX_PORT)$(WX_VERSION)$(WXLIBPOSTFIX)_$(value)</sys-lib> </if> <if cond="value not in ALLLIB_LIST.split()"> <error>Unknown wxWidgets library given in the wx-lib tag</error> </if> </define-tag> <!-- just a placeholder to mark the place where <wx-lib> will be placed, thanks to the order precedence declaration below it: --> <define-tag name="__wx-libs-point" rules="exe,dll,module"/> <tag-info name="wx-lib" position="before:__wx-libs-point"/> <tag-info name="__wx-syslibs" position="after:__wx-libs-point"/> <!-- template for static wx libraries: --> <template id="wx-lib"> <!-- MISCELLANEOUS --> <if cond="FORMAT=='mingw'"> <define>HAVE_W32API_H</define> <ldflags>-mthreads</ldflags> </if> <define>$(substituteFromDict(WX_SHARED,{'1':'WXUSINGDLL','0':''}))</define> <define>$(WXUNICODE_DEFINE)</define> <define>$(WXDEBUG_DEFINE)</define> <define>__WXMSW__</define> <include>$(WX_DIR)$(WXLIBINCLUDE)</include> <include>$(WX_DIR)/include</include> </template> <!-- this ugly tag contains all sys-lib tags used by "wx" template, in order to make sure they are not reorder when wx-lib is moved after __wx-libs-point: --> <define-tag name="__wx-syslibs" rules="exe,dll,module"> <!-- wx 3rd party libs, always use them: --> <sys-lib cond="FORMAT!='msevc4prj'">wxtiff$(WX3RDPARTYLIBPOSTFIX)</sys-lib> <sys-lib>wxjpeg$(WX3RDPARTYLIBPOSTFIX)</sys-lib> <sys-lib>wxpng$(WX3RDPARTYLIBPOSTFIX)</sys-lib> <sys-lib>wxzlib$(WX3RDPARTYLIBPOSTFIX)</sys-lib> <!-- For regex we won't use the WX3RDPARTYLIBPOSTIX postfix: unliked tiff, jpeg, png, zlib, expat, when building in Unicode mode, the "u" suffix is appended to regex --> <sys-lib cond="FORMAT!='msevc4prj'">wxregex$(WXLIBPOSTFIX)</sys-lib> <sys-lib>wxexpat$(WX3RDPARTYLIBPOSTFIX)</sys-lib> <!-- link-in system libs that wx depends on: --> <!-- If on borland, we don't need to do much --> <if cond="FORMAT=='borland'"> <sys-lib>ole2w32</sys-lib> <sys-lib>odbc32</sys-lib> </if> <!-- Non-borland, on the other hand... --> <if cond="FORMAT not in ['borland','msevc4prj']"> <sys-lib>kernel32</sys-lib> <sys-lib>user32</sys-lib> <sys-lib>gdi32</sys-lib> <sys-lib>comdlg32</sys-lib> <sys-lib>winspool</sys-lib> <sys-lib>winmm</sys-lib> <sys-lib>shell32</sys-lib> <sys-lib>comctl32</sys-lib> <sys-lib>ole32</sys-lib> <sys-lib>oleaut32</sys-lib> <sys-lib>uuid</sys-lib> <sys-lib>rpcrt4</sys-lib> <sys-lib>advapi32</sys-lib> <sys-lib>wsock32</sys-lib> <sys-lib>odbc32</sys-lib> </if> <!-- Libs common to both borland and MSVC --> <if cond="FORMAT=='msvc' or FORMAT=='msvc6prj' or FORMAT=='borland'"> <sys-lib>oleacc</sys-lib> </if> </define-tag> <!-- template for wx executables/dlls: --> <template id="wx" template="wx-lib"> <lib-path>$(WX_DIR)$(WXLIBPATH)</lib-path> <!-- wx libs must come before 3rd party and sys libs, this is the place where the hack explained above is carried on: --> <__wx-libs-point/> <__wx-syslibs/> </template> <if cond="FORMAT_SUPPORTS_ACTIONS=='1'"> <!-- VERY IMPORTANT: before starting to build all targets of the generated makefile, we need to check if the selected wxWidgets build exists; we do that simply creating the following target; if it fails the make program will halt printing the following nice error message... (much better than the 'could not find wx/*.h file') --> <action id="test_for_selected_wxbuild"> <dependency-of>all</dependency-of> <!-- the @ is to hide these actions from the user --> <command> @if not exist $(WX_DIR)$(WXLIBINCLUDE)$(DIRSEP)wx$(DIRSEP)setup.h \ echo ---------------------------------------------------------------------------- @if not exist $(WX_DIR)$(WXLIBINCLUDE)$(DIRSEP)wx$(DIRSEP)setup.h \ echo The selected wxWidgets build is not available! @if not exist $(WX_DIR)$(WXLIBINCLUDE)$(DIRSEP)wx$(DIRSEP)setup.h \ echo Please use the options prefixed with WX_ to select another wxWidgets build. @if not exist $(WX_DIR)$(WXLIBINCLUDE)$(DIRSEP)wx$(DIRSEP)setup.h \ echo ---------------------------------------------------------------------------- @if not exist $(WX_DIR)$(WXLIBINCLUDE)$(DIRSEP)wx$(DIRSEP)setup.h \ exit 1 </command> </action> </if> </makefile> --- NEW FILE: wx.bkl --- <?xml version="1.0" ?> <!-- $Id: wx.bkl,v 1.1 2007/04/24 14:29:46 frm Exp $ --> <!-- Presets for building wxWidgets applications. These presets provide the following "public" interface: OPTIONS: - WX_* : used to let the user of the generated makefile choose a wxWidgets build among those available; you can use them in your project to e.g. build a target only if WX_DEBUG is 0 or if WX_PORT is "msw". VARIABLES: - WXLIBPOSTFIX: contains the [u][d] string which is typically useful when defining names of directories/files which should coexist with other builds using different wxWidgets configurations. TEMPLATES: - wx, wx-lib: templates to be used respectively for <dll>/<exe> and <lib> targets; they add all the wxWidgets-related settings (e.g. the include and library search paths, the __WXDEBUG__ symbol, etc) - wxconsole: to be used when building console-only libraries or apps (adds the wxUSE_GUI=0 define). - wxlike: this template should be combined with "wx" or "wx-lib" and will make your project build with the same Unicode, debug & shared config as the wxWidgets build selected using the WX_* options. TARGET TAGS: - <wx-lib>: to define which wxWidgets libraries to link with; please note that you should use them in the right order or linking under Unix would result in errors, e.g. <wx-lib>core</wx-lib> <wx-lib>base</wx-lib> is correct, but the reverse is not (if lib A depends on lib B, then lib A must be listed before B). So <wx-lib>base</wx-lib> (which must always be present) should be the last wx-lib tag. - <wxlike-libname>, <wxlike-dllname>: useful if you want to have a build logic similar to the wxWidgets build logic which allows different builds to coexist without conflicts. These tags helps you to name libraries using the same wxWidgets rules and thus avoid conflicts between libraries compiled in e.g. Unicode, shared mode and those compiled in ANSI, shared mode &c. - <wxlike-lib>: if your library/application needs to link with both wxWidgets and some other wx-based library, which in turn follows the wxWidgets naming conventions, then this tag is what you need to reference the wx-based additional library. - <wxlike-dirname>: sets the output directory for the current target to $(value) when on Unix and to e.g. $(value)/vc_lib when on Windows, i.e. acts like <dirname> just following wxWidgets naming rules. Useful to allow multiple builds of the - <wxlike-paths>: if your library/application needs to compile & link with both wxWidgets and some other wx-based library, which in turn follows the wxWidgets naming conventions, then this tag is what you need to add to the compiler and linker flags the paths of the "include" and "lib" folders of the wx-based additional library. GLOBAL TAGS: - <set-wxlike-builddir>: sets BUILDDIR using wxWidgets naming rules to help to keep object files compiled with different settings separate. - <set-wxlike>: sets a variable with the name of a library named with the same wxWidgets rules. NOTE: as a reference here is a list of all wxWidgets libraries satisfying the dependency constraints mentioned in <wx-lib> description: <wx-lib>richtext</wx-lib> <wx-lib>aui</wx-lib> <wx-lib>qa</wx-lib> <wx-lib>dbgrid</wx-lib> <wx-lib>gl</wx-lib> <wx-lib>odbc</wx-lib> <wx-lib>xrc</wx-lib> <wx-lib>html</wx-lib> <wx-lib>media</wx-lib> <wx-lib>adv</wx-lib> <wx-lib>net</wx-lib> <wx-lib>xml</wx-lib> <wx-lib>core</wx-lib> <wx-lib>base</wx-lib> --> <makefile> <requires version="0.2.2"/> <!-- this variable identifies the version of the wx presets. this is changed only when major changes to wxpresets take place. --> <set var="WX_PRESETS_VERSION">5</set> <!-- list of known libraries used by wx-lib tag defined in wx_unix.bkl and wx_win32.bkl VERY IMPORTANT: when updating this list also update the <wx-lib> and <wx-all-libs> tag definitions. --> <set var="LIB_LIST"> base core net xml odbc xrc html adv media gl dbgrid qa aui richtext </set> <!-- NOTE: refer to the NET contrib using NETUTILS instead of NET (which is already in LIB_LIST) --> <set var="CONTRIBLIB_LIST"> applet deprecated fl foldbar gizmos mmedia netutils ogl plot stc svg </set> <set var="ALLLIB_LIST">$(LIB_LIST) $(CONTRIBLIB_LIST)</set> <!-- this is a temporary variable until there is non general --> <!-- function in bakefiles for returning native markup for --> <!-- reading envrionment variables --> <set var="ENV_VAR"> <if cond="FORMAT=='watcom'">%</if> <if cond="FORMAT!='watcom'"></if> </set> <!-- OPTIONS --> <!-- --> <!-- These are essentially the configurations you --> <!-- want in bakefile. --> <!-- --> <!-- In MSVC these are the different build --> <!-- configurations you can have (in the build menu), --> <!-- and in autoconf is enabled with enable-xxx=xx. --> <!-- For other compilers a separate configuration --> <!-- file is created (such as config.gcc on gcc) --> <!-- which has several options a user can modify. --> <!-- --> <!-- Note that the above only happens if an option --> <!-- is not constant, i.e. if it cannot be determined --> <!-- by bakefile itself. --> <!-- Also note that for 'autoconf' format these options --> <!-- are only useful when used together with wxpresets.m4 --> <!-- macro file which contains macros for detecting the --> <!-- option values for wx-based projects. See wxpresets.m4 --> <!-- comments for more info. --> <!-- Presets for limited dmars make.exe format: --> <if cond="FORMAT=='dmars'"> <set var="WX_UNICODE">0</set> <set var="WX_DEBUG">1</set> <set var="WX_SHARED">0</set> </if> <!-- 'gnu' format needs to redefine the following options later in wx_unix.bkl --> <if cond="FORMAT=='gnu'"> <set var="WX_UNICODE"/> <set var="WX_DEBUG"/> <set var="WX_SHARED"/> <set var="WX_PORT"/> <set var="WX_VERSION"/> </if> <!-- This is a standard option that determines --> <!-- whether the user wants to build this library as --> <!-- a dll or as a static library. --> <if cond="not isdefined('WX_SHARED')"> <set var="WX_SHARED_DEFAULT" overwrite="0">0</set> <option name="WX_SHARED"> <values>0,1</values> <values-description>Static,DLL</values-description> <default-value>$(WX_SHARED_DEFAULT)</default-value> <description> Use DLL build of wx library? </description> </option> </if> <!-- Configuration for building the bakefile with --> <!-- unicode strings or not (unicode or ansi). --> <if cond="not isdefined('WX_UNICODE')"> <set var="WX_UNICODE_DEFAULT" overwrite="0">0</set> <option name="WX_UNICODE"> <values>0,1</values> <values-description>ANSI,Unicode</values-description> <default-value>$(WX_UNICODE_DEFAULT)</default-value> <description> Use Unicode build of wxWidgets? </description> </option> </if> <if cond="not isdefined('WX_DEBUG')"> <set var="WX_DEBUG_DEFAULT" overwrite="0">1</set> <option name="WX_DEBUG"> <values>0,1</values> <values-description>Release,Debug</values-description> <default-value>$(WX_DEBUG_DEFAULT)</default-value> <description> Use debug build of wxWidgets (define __WXDEBUG__)? </description> </option> </if> <if cond="not isdefined('WX_VERSION')"> <set var="WX_VERSION_DEFAULT" overwrite="0">28</set> <option name="WX_VERSION"> <default-value>$(WX_VERSION_DEFAULT)</default-value> <description> Version of the wx library to build against. </description> </option> </if> <if cond="not isdefined('WX_MONOLITHIC')"> <set var="WX_MONOLITHIC_DEFAULT" overwrite="0">0</set> <option name="WX_MONOLITHIC"> <values>0,1</values> <values-description>Multilib,Monolithic</values-description> <default-value>$(WX_MONOLITHIC_DEFAULT)</default-value> <description> Use monolithic build of wxWidgets? </description> </option> </if> <!-- The directory where wxWidgets is installed: --> <if cond="not isdefined('WX_DIR')"> <set var="WX_DIR_DEFAULT" overwrite="0">$(DOLLAR)($(ENV_VAR)WXWIN)</set> <option name="WX_DIR" category="path"> <default-value>$(WX_DIR_DEFAULT)</default-value> <description> The directory where wxWidgets library is installed </description> </option> </if> <!-- HELPER VARIABLES --> <!-- --> <!-- These are handy ways of dealing with the --> <!-- extensions in the library names of the --> <!-- wxWindows library. --> <set var="WXLIBPOSTFIX"> <if cond="WX_DEBUG=='1' and WX_UNICODE=='1'">ud</if> <if cond="WX_DEBUG=='1' and WX_UNICODE=='0'">d</if> <if cond="WX_DEBUG=='0' and WX_UNICODE=='1'">u</if> </set> <!-- this is just a wrapper that includes the real implementation: --> <set var="__wx_included_impl">0</set> <if cond="FORMAT in ['autoconf','gnu']"> <include file="wx_unix.bkl"/> <set var="__wx_included_impl">1</set> </if> <if cond="FORMAT!='autoconf' and PLATFORM_WIN32=='1'"> <include file="wx_win32.bkl"/> <set var="__wx_included_impl">1</set> </if> <if cond="__wx_included_impl=='0'"> <error>This format is not (yet) supported by wx preset.</error> </if> <!-- HIGH-LEVEL TEMPLATE --> <!-- --> <!-- Combine 'wxlike' with 'wx' or 'wx-lib' templates to have your project build in the same configuration used by the selected wxWidgets build --> <template id="wxlike"> <!-- WX_DEBUG-dependent --> <set var="_OPT"> <if cond="WX_DEBUG=='1'">off</if> <if cond="WX_DEBUG=='0'">speed</if> </set> <set var="_DEBUGINFO"> <if cond="WX_DEBUG=='1'">on</if> <if cond="WX_DEBUG=='0'">off</if> </set> <if cond="FORMAT!='autoconf'"> <optimize>$(_OPT)</optimize> <debug-info>$(_DEBUGINFO)</debug-info> </if> </template> <!-- Template for building wx-based console applications --> <template id="wxconsole" template="wx"> <define>wxUSE_GUI=0</define> <app-type>console</app-type> </template> <!-- UTILITY TAGS --> <!-- --> <!-- private helper tag: does the same thing as for <set-wxlike> except that: - the variable created is always named "__temp" - can be used (only) inside targets as this is a non-global tag --> <define-tag name="__setlibname" rules="lib,dll,module,exe"> <set var="__temp"> <if cond="FORMAT!='autoconf' and FORMAT!='gnu'"> $(attributes['prefix'])_$(WX_PORT)$(WX_VERSION)$(WXLIBPOSTFIX)_$(value) </if> <if cond="FORMAT=='autoconf' or FORMAT=='gnu'"> $(attributes['prefix'])_$(WX_PORT)$(WXLIBPOSTFIX)_$(value)-$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR) </if> </set> </define-tag> <!-- A simple tag which helps you to define a library name using the same rules used by wxWidgets. Use the 'prefix' attribute to add your lib's prefix. E.g.: <wxlike-libname prefix='mylib'>module1</wxlike-libname> <wxlike-libname prefix='mylib'>module2</wxlike-libname> --> <define-tag name="wxlike-libname" rules="lib"> <echo>WXLIBPOSTFIX is $(WXLIBPOSTFIX)</echo> <__setlibname prefix="$(attributes['prefix'])">$(value)</__setlibname> <libname>$(__temp)</libname> </define-tag> <!-- exactly like <wxlike-libname> but this one sets the DLL name (and the DLL lib import name) and thus must be used only inside a <dll> target... --> <define-tag name="wxlike-dllname" rules="dll,module"> <__setlibname prefix="$(attributes['prefix'])">$(value)</__setlibname> <libname>$(__temp)</libname> <dllname>$(__temp)</dllname> </define-tag> <!-- Links against a library which uses the same wxWidgets conventions. --> <define-tag name="wxlike-lib" rules="exe,lib,dll,module"> <__setlibname prefix="$(attributes['prefix'])">$(value)</__setlibname> <sys-lib>$(__temp)</sys-lib> </define-tag> <!-- Sets as output folder for the current target a directory called "$(value)/$(COMPILER)_lib|dll", just like wxWidgets does. This makes it possible to keep separed the libraries/exes compiled with different compilers and with a different value for WX_SHARED. --> <define-tag name="wxlike-dirname" rules="lib,dll,exe,module"> <if cond="FORMAT!='autoconf'"> <set var="_DIRNAME_SHARED_SUFFIX"> <if cond="WX_SHARED=='0'">lib</if> <if cond="WX_SHARED=='1'">dll</if> </set> <set var="_DIRNAME"> $(value)/$(COMPILER)_$(_DIRNAME_SHARED_SUFFIX) </set> <dirname>$(_DIRNAME)</dirname> <if cond="FORMAT_SUPPORTS_ACTIONS=='1'"> <set var="__mkdir_tgt">make_dir_$(id)</set> <add-target target="$(__mkdir_tgt)" type="action"/> <modify-target target="$(__mkdir_tgt)"> <command cond="TOOLSET=='unix'"> @mkdir -p $(_DIRNAME) </command> <command cond="TOOLSET in ['win32','os2','dos']"> if not exist $(nativePaths(_DIRNAME)) mkdir $(nativePaths(_DIRNAME)) </command> </modify-target> <!-- the following code is mostly equivalent to a: <dependency-of>$(id)</dependency-of> put into the __mkdir_tgt target, except that it does _prepend_ the __mkdir_tgt dependency instead of appending it. This is required because some compilers (e.g. MSVC) need to store in the output folder some files (e.g. the PDB file) while compiling and thus the library output folder must have been created before _any_ source file is compiled, not just before the library is linked. --> <modify-target target="$(id)"> <set var="__deps" prepend="1"> $(substitute(__mkdir_tgt, lambda x: ref('__depname', x), 'DEP')) </set> </modify-target> </if> </if> <if cond="FORMAT=='autoconf'"> <set var="_DIRNAME">$(value)</set> <dirname>$(_DIRNAME)</dirname> </if> </define-tag> <!-- Adds to the compiler & linker flags the path for the "include" and the "lib" folders of a library following wxWidgets conventions which is located in $(value). --> <define-tag name="wxlike-paths" rules="exe,lib,dll,module"> <if cond="FORMAT!='autoconf' and FORMAT!='gnu'"> <!-- WXLIBPATH is a path like "/lib/vc_lib" NOTE: even if this template is going to be used for a "lib" target (which does not uses lib-paths at all), we can still use the <lib-path> target: it will just be discarded --> <lib-path>$(value)$(WXLIBPATH)</lib-path> <!-- no special include paths for a lib following wxWidgets naming conventions --> <include>$(value)/include</include> </if> <!-- for autoconf format the user should use CPPFLAGS and LDFLAGS to specify non-system paths since the wx-based library should have been installed in standard paths --> </define-tag> <!-- UTILITY GLOBAL TAGS --> <!-- --> <!-- Sets the BUILDDIR variable using the same rules used by wxWidgets itself. This makes it possible to keep separed the object files compiled with different configuration settings. --> <define-global-tag name="set-wxlike-builddir"> <!-- note that the builddir for autoconf should always be '.' --> <if cond="FORMAT!='autoconf'"> <set var="_BUILDDIR_SHARED_SUFFIX"> <if cond="WX_SHARED=='0'"></if> <if cond="WX_SHARED=='1'">_dll</if> </set> <set var="BUILDDIR"> $(COMPILER)$(WX_PORT)$(WXLIBPOSTFIX)$(_BUILDDIR_SHARED_SUFFIX) </set> </if> </define-global-tag> <!-- Sets a variable with the name of the 'var' attribute value using the same rules used for wxWidgets library naming. E.g. <set-wxlike var='MYMODULE_LIBNAME' prefix='mylib'> mymodule </set-wxlike> This tag also supports a 'cond' attribute making it very powerful for conditional linking a wx-based library: <option name="USE_MYMODULE"> <values>0,1</values> </option> <set-wxlike var='MYMODULE_DEP' prefix='mylib' cond="USE_MYMODULE=='1'"> mymodule </set-wxlike> ... <exe id="myexe"> <sys-lib>$(MYMODULE_DEP)</sys-lib> </exe> --> <define-global-tag name="set-wxlike"> <if cond="FORMAT!='autoconf' and FORMAT!='gnu'"> <if cond="'cond' not in attributes"> <set var="$(attributes['var'])"> $(attributes['prefix'])_$(WX_PORT)$(WX_VERSION)$(WXLIBPOSTFIX)_$(value) </set> </if> <if cond="'cond' in attributes"> <set var="$(attributes['var'])"> <if cond="$(attributes['cond'])"> $(attributes['prefix'])_$(WX_PORT)$(WX_VERSION)$(WXLIBPOSTFIX)_$(value) </if> </set> </if> </if> <if cond="FORMAT=='autoconf' or FORMAT=='gnu'"> <if cond="'cond' not in attributes"> <set var="$(attributes['var'])"> $(attributes['prefix'])_$(WX_PORT)$(WXLIBPOSTFIX)_$(value)-$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR) </set> </if> <if cond="'cond' in attributes"> <set var="$(attributes['var'])"> <if cond="$(attributes['cond'])"> $(attributes['prefix'])_$(WX_PORT)$(WXLIBPOSTFIX)_$(value)-$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR) </if> </set> </if> </if> </define-global-tag> </makefile> --- NEW FILE: wx_unix.bkl --- <?xml version="1.0" ?> <!-- $Id: wx_unix.bkl,v 1.1 2007/04/24 14:29:46 frm Exp $ --> <!-- Presents for building wxWidgets applications using Autoconf or GNU toosets. See wx.bkl for platform-independent notes. Format-specific notes: * autoconf: Beware that you have to use AM_OPTIONS_WXCONFIG and AM_PATH_WXCONFIG in your configure.in to get at least the WX_CPPFLAGS, WX_CFLAGS, WX_CXXFLAGS, WX_LIBS option values defined. To detect the WX_* option values typically you also want to use the AM_WXPRESETS_OPTIONS and AM_WXPRESETS_CHECKS macros (see wxpresets.m4 for more info). --> <makefile> <!-- ============================================================== --> <!-- Autoconf --> <!-- ============================================================== --> <if cond="FORMAT=='autoconf'"> <option name="WX_CFLAGS"/> <option name="WX_CXXFLAGS"/> <option name="WX_CPPFLAGS"/> <option name="WX_LIBS"/> <option name="WX_RESCOMP"/> <option name="WX_VERSION_MAJOR"/> <option name="WX_VERSION_MINOR"/> <option name="WX_PORT"/> <!-- wxwin.m4 macros will detect all WX_* options defined above --> <!-- VERY IMPORTANT: <wx-lib>base</wx-lib> must be the last wx-lib tag in all your bakefiles !! --> <define-tag name="wx-lib" rules="exe,dll,module"> <if cond="value=='base'"> <!-- all wx-dependent libraries should have been already listed thus we can now add WX_LIBS to the linker line --> <ldlibs>$(WX_LIBS)</ldlibs> </if> <if cond="value not in ALLLIB_LIST.split()"> <error>Unknown wxWidgets library given in the wx-lib tag</error> </if> </define-tag> </if> <!-- ============================================================== --> <!-- GNU makefiles for Unix --> <!-- ============================================================== --> <if cond="FORMAT=='gnu'"> <!-- remove those WX_* vars which were created just to avoid the definition of the WX_* options in wx.bkl --> <unset var="WX_SHARED"/> <unset var="WX_UNICODE"/> <unset var="WX_DEBUG"/> <unset var="WX_PORT"/> <unset var="WX_VERSION"/> <set var="WX_CONFIG_DEFAULT" overwrite="0">wx-config</set> <option name="WX_CONFIG"> <default-value>$(WX_CONFIG_DEFAULT)</default-value> <description>Location and arguments of wx-config script</description> </option> <set var="WX_PORT_DEFAULT" overwrite="0"> $(DOLLAR)(shell $(WX_CONFIG) --selected-config | cut -d '-' -f 1) </set> <option name="WX_PORT"> <values>gtk1,gtk2,msw,x11,motif,mgl,mac,dfb</values> <default-value force="1">$(WX_PORT_DEFAULT)</default-value> <description> Port of the wx library to build against </description> </option> <set var="WX_SHARED_DEFAULT" overwrite="0"> $(DOLLAR)(shell if test -z `$(WX_CONFIG) --selected-config | cut -d '-' -f 5`; then echo 1; else echo 0; fi) </set> <option name="WX_SHARED"> <values>0,1</values> <values-description>Static,DLL</values-description> <default-value force="1">$(WX_SHARED_DEFAULT)</default-value> <description> Use DLL build of wx library to use? </description> </option> <set var="WX_UNICODE_DEFAULT" overwrite="0"> $(DOLLAR)(shell $(WX_CONFIG) --selected-config | cut -d '-' -f 2 | sed 's/unicode/1/;s/ansi/0/') </set> <option name="WX_UNICODE"> <values>0,1</values> <values-description>ANSI,Unicode</values-description> <default-value force="1">$(WX_UNICODE_DEFAULT)</default-value> <description> Compile Unicode build of wxWidgets? </description> </option> <set var="WX_DEBUG_DEFAULT" overwrite="0"> $(DOLLAR)(shell $(WX_CONFIG) --selected-config | cut -d '-' -f 3 | sed 's/debug/1/;s/release/0/') </set> <option name="WX_DEBUG"> <values>0,1</values> <values-description>Release,Debug</values-description> <default-value force="1">$(WX_DEBUG_DEFAULT)</default-value> <description> Use debug build of wxWidgets (define __WXDEBUG__)? </description> </option> <set var="WX_VERSION_DEFAULT" overwrite="0"> $(DOLLAR)(shell $(WX_CONFIG) --selected-config | sed -e 's/.*-\([0-9]*\)\.\([0-9]*\)$$/\1\2/') </set> <option name="WX_VERSION"> <default-value>$(WX_VERSION_DEFAULT)</default-value> <description> Version of the wx library to build against. </description> </option> <!-- Get MAJOR and MINOR version numbers --> <set var="WX_VERSION_MAJOR" make_var="1"> $(DOLLAR)(shell echo $(DOLLAR)(WX_VERSION) | cut -c1,1) </set> <set var="WX_VERSION_MINOR" make_var="1"> $(DOLLAR)(shell echo $(DOLLAR)(WX_VERSION) | cut -c2,2) </set> <!-- Using the GNU format creates a configurable makefile just like a win32 makefile: i.e. a makefile where you can select the wanted wxWidgets build using the WX_* options. The difference with win32 makefiles is that WX_DEBUG, WX_UNICODE and WX_SHARED options have a smart default value which is created using the installed wx-config or the wx-config given using WX_CONFIG option --> <set var="WX_CONFIG_DEBUG_FLAG"> <if cond="WX_DEBUG=='0'">--debug=no</if> <if cond="WX_DEBUG=='1'">--debug=yes</if> </set> <set var="WX_CONFIG_UNICODE_FLAG"> <if cond="WX_UNICODE=='0'">--unicode=no</if> <if cond="WX_UNICODE=='1'">--unicode=yes</if> </set> <set var="WX_CONFIG_SHARED_FLAG"> <if cond="WX_SHARED=='0'">--static=yes</if> <if cond="WX_SHARED=='1'">--static=no</if> </set> <set var="WX_CONFIG_PORT_FLAG"> --toolkit=$(WX_PORT) </set> <set var="WX_CONFIG_VERSION_FLAG"> --version=$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR) </set> <set var="WX_CONFIG_FLAGS" make_var="1"> $(WX_CONFIG_DEBUG_FLAG) $(WX_CONFIG_UNICODE_FLAG) $(WX_CONFIG_SHARED_FLAG) $(WX_CONFIG_PORT_FLAG) $(WX_CONFIG_VERSION_FLAG) </set> <set var="WX_CFLAGS">`$(DOLLAR)(WX_CONFIG) --cflags $(WX_CONFIG_FLAGS)`</set> <set var="WX_CXXFLAGS">`$(DOLLAR)(WX_CONFIG) --cxxflags $(WX_CONFIG_FLAGS)`</set> <set var="WX_CPPFLAGS">`$(DOLLAR)(WX_CONFIG) --cppflags $(WX_CONFIG_FLAGS)`</set> <set var="WX_RESCOMP">`$(DOLLAR)(WX_CONFIG) --rescomp $(WX_CONFIG_FLAGS)`</set> <!-- VERY IMPORTANT: before starting to build all targets of the generated makefile, we need to check if the selected wxWidgets build exists; we do that simply creating the following target; if it fails the make program will halt with the wx-config error message... --> <action id="test_for_selected_wxbuild"> <dependency-of>all</dependency-of> <!-- Use @ to hide to the user that we're running wx-config... --> <command>@$(DOLLAR)(WX_CONFIG) $(WX_CONFIG_FLAGS)</command> </action> <!-- we need this but the trick used in default-values above prevents bakefile from detecting it: --> <set var="FORMAT_OUTPUT_VARIABLES" append="1">WX_CONFIG WX_VERSION</set> <!-- VERY IMPORTANT: <wx-lib>base</wx-lib> must be the last wx-lib tag in all your bakefiles !! --> <define-tag name="wx-lib" rules="exe,dll,module"> <if cond="value=='base'"> <!-- all wx libraries should have been already specified, thus $(__liblist) should contain the full list... --> <set var="__liblist" append="1">base</set> <ldlibs>`$(WX_CONFIG) $(WX_CONFIG_FLAGS) --libs $(','.join(__liblist.split()))`</ldlibs> </if> <if cond="value!='base'"> <set var="__liblist" append="1">$(value)</set> </if> <if cond="value not in ALLLIB_LIST.split()"> <error>Unknown wxWidgets library given in the wx-lib tag</error> </if> </define-tag> </if> <!-- ============================================================== --> <!-- Common code --> <!-- ============================================================== --> <if cond="FORMAT not in ['gnu','autoconf']"> <error> Don't include presets/wx_unix.bkl directly, use presets/wx.bkl. </error> </if> <!-- We need to re-define the WINDRES resource compiler name to the resource compiler returned by 'wx-config - -rescomp' since this option returns both the name of the resource compiler to use (windres) and the flags required for that compiler. This line typically does something *only* when the Makefile.in generated using this bakefile, is used on Windows with MSYS (when using Cygwin, resources are not compiled at all). Without this line, in fact, when compiling with MSYS on Windows, the - -include-dir option which tells windres to look in wxWidgets\include folder would be missing and then windres would fail to find the wxMSW resources. NOTE: overwriting the WINDRES variable we add wxWidgets resource flags to all targets which include this bakefile; this could be useless to those targets which are not wx-based eventually present in that bakefile but in any case it shouldn't do any harm. --> <set var="WINDRES">$(WX_RESCOMP)</set> <template id="wx-lib"> <cxxflags>$(WX_CXXFLAGS)</cxxflags> <cflags>$(WX_CFLAGS)</cflags> </template> <template id="wx" template="wx-lib"> <!-- Don't include the $(WX_LIBS) variable in linker options here since it would make impossible for the user to obtain the right library order when he needs to specify, *before* WX_LIBS, its own libraries that depend on wxWidgets libraries; to avoid this, we include $(WX_LIBS) as soon as we found the <wx-lib>base</wx-lib> tag which the user should always put *after* all other wx-dependent libraries --> </template> </makefile> |