wxWidgets/build/bakefiles
Stefan Brüns 128e3ff123 Make the wxART_* constants const wxStrings with static storage duration
The pre-3.1.4 definitions of the constants were just string literals,
while the type were wxString typedefs. To avoid implicit conversion
these were converted to actual wxStrings.

While the interface now matched the implementation, this has several
drawbacks:
- every use of the "constant" now is a string construction at runtime
- the constant now is an rvalue, i.e. it is impossible to take its
  address.

The latter breaks its use from wxPython.

The IDs are moved to a separate file which can be included multiple
times, once from the header to have the declarations in place, and once
to instantiate the wxStrings. Using a common file avoids the declaration
and definition going out of sync.
2020-08-06 12:31:37 +02:00
..
wxpresets
Bakefiles.bkgen Remove the flash sample 2019-07-18 17:48:23 +02:00
build_cfg.bkl
common_samples_intree.bkl Only embed manifest in GUI applications 2020-07-31 01:53:40 +02:00
common_samples_outoftree.bkl
common_samples.bkl
common.bkl Only embed manifest in GUI applications 2020-07-31 01:53:40 +02:00
config.bkl Don't use windres --use-temp-file option 2020-07-14 22:10:58 +02:00
expat.bkl
files.bkl Make the wxART_* constants const wxStrings with static storage duration 2020-08-06 12:31:37 +02:00
jpeg.bkl
mac_bundles.bkl
make_dist.mk
monolithic.bkl Fix linking monolithic wxMSW DLL after STC IME changes 2020-05-31 14:33:30 +02:00
multilib.bkl Add imm32.lib to wxStyledTextCtrl 2020-05-11 00:37:56 -04:00
opengl.bkl
plugins_deps.bkl
plugins.bkl
png.bkl Enable SSE2 in libpng build 2020-04-19 16:31:22 +02:00
README
regex.bkl
scintilla.bkl
tiff.bkl
version.bkl Update the version to 3.1.5 2020-07-23 16:25:39 +02:00
wx.bkl Add back the use of INSTALL_SCRIPT correctly 2020-05-02 15:55:25 +02:00
wxwin.py Link samples using STC with imm32.lib 2020-06-10 19:30:48 +02:00
zlib.bkl

This directory contains Bakefile (see http://bakefile.sourceforge.net)
files needed to generate native makefiles for wxWidgets library and
samples.

Use the bakefile_gen utility to regenerate the makefiles (run it in this
directory!). If you run it with no arguments, it will generate all makefiles
that are not up to date.

Use "bakefile_gen -c" to clean generated files.

You can generate or clean only subset of files by specifying -f or -b flags
when invoking bakefile_gen. For example, "bakefile_gen -fborland,msvc" will
only regenerate Borland C++ and MSVC makefiles. -b flag limits
regeneration only to specified bakefiles. For example,
"bakefile_gen -b wx.bkl" will only regenerate main library makefiles.
"bakefile_gen -b "../../samples/html/*/*.bkl" will regenerate makefiles for
all wxHTML samples. -b and -f can be combined.

You can customize the process of generating makefiles by adding file
Bakefiles.local.bkgen (same format as Bakefiles.bkgen) with further settings.
For example, you may disable output for compilers you don't use:
   <?xml version="1.0" ?>
   <bakefile-gen>
     <disable-formats>msvc,msvs2003prj</disable-formats>
   </bakefile-gen>

Note: bakefile_gen creates file .bakefile_gen.state with dependencies
information. This file can be safely deleted, but it contains valuable
information that speed up regeneration process.

Note: the following files are generated using bakefile_gen:
  * build/msw/*
  * makefiles with same names as makefiles in above dirs, Makefile.in files 
    that contain "This makefile was generated by Bakefile" banner and
    VC++ project files in samples, demos and utils directories
  * src/wxWindows.dsp
  * autoconf_inc.m4
  * all Makefile.in files
  (hopefully I didn't forget anything - VS)