OSDN Git Service

Add a missing return statement.
[mingw/wtklite.git] / README
1 README for MinGW Windows ToolKit
2 ================================
3
4 $Id$
5
6 Written by Keith Marshall <keithmarshall@users.sourceforge.net>
7 Copyright (C) 2012, MinGW.org Project
8
9
10 Synopsis
11 --------
12
13 This package implements a minimal C++ class framework, encapsulating
14 the MS-Windows API.  It has been developed to facilitate implementation
15 of the GUI components of mingw-get; as such, it does not aim to provide
16 a fully featured API class framework, but rather, it is restricted to
17 providing only those features which are necessary for mingw-get.
18
19 It may be extended in the future, as the need arises.
20
21
22 Licence
23 -------
24
25 Permission is hereby granted, free of charge, to any person obtaining a
26 copy of this software and associated documentation files (the "Software"),
27 to deal in the Software without restriction, including without limitation
28 the rights to use, copy, modify, merge, publish, distribute, sublicense,
29 and/or sell copies of the Software, and to permit persons to whom the
30 Software is furnished to do so, subject to the following conditions:
31
32 The above copyright notice, this permission notice, and the following
33 disclaimer shall be included in all copies or substantial portions of
34 the Software.
35
36 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
37 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
38 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
39 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
40 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
41 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
42 DEALINGS IN THE SOFTWARE.
43
44
45 Building from a Source TarBall
46 ------------------------------
47
48 This package is delivered in source format, suitable for building in
49 accordance with the standard GNU paradigm; building out-of-source, (or
50 in a subdirectory of the source tree), is recommended:--
51
52   1) tar xf wtk-<version>-mingw32-src.tar.gz
53   2) mkdir wtk-<version>/build
54   3) cd wtk-<version>/build
55   4) ../configure
56   5) make
57   6) make install
58
59
60 Building from SCM Repository
61 ----------------------------
62
63 If the source code has been obtained from MinGW.org's git repository, it
64 will be necessary to also source the build-aux module from this repository,
65 and link, (or copy), the install-sh file into the top source directory of
66 the WTK tree.  Then, cd to the top of the WTK tree, and proceed:--
67
68   1) autoconf
69   2) mkdir build
70   3) cd build
71   4) ../configure
72   5) make
73   6) make install
74
75 $RCSfile$: end of file