1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
SCons - a software construction tool
####################################
.. image:: https://img.shields.io/badge/IRC-scons-blue.svg
:target: http://webchat.freenode.net/?channels=%23scons&uio=d4
:alt: IRC
.. image:: https://img.shields.io/sourceforge/dm/scons.svg
:target: https://sourceforge.net/projects/scons
:alt: Sourceforge Monthly Downloads
.. image:: https://img.shields.io/sourceforge/dt/scons.svg
:target: https://sourceforge.net/projects/scons
:alt: Sourceforge Total Downloads
.. image:: https://travis-ci.org/SCons/scons.svg?branch=master
:target: https://travis-ci.org/SCons/scons
:alt: Travis CI build status
.. image:: https://ci.appveyor.com/api/projects/status/github/SCons/scons?svg=true&branch=master
:target: https://ci.appveyor.com/project/SCons/scons
:alt: AppVeyor CI build Status
.. image:: https://codecov.io/gh/SCons/scons/branch/master/graph/badge.svg
:target: https://codecov.io/gh/SCons/scons
:alt: CodeCov Coverage Status
About SCons
-----------
This is SCons, a tool for building software (and other files). SCons is
implemented in Python, and its "configuration files" are actually Python
scripts, allowing you to use the full power of a real scripting language
to solve build problems. You do not, however, need to know Python to
use SCons effectively.
Documentation
-------------
Documentation for SCons is available at:
http://www.scons.org/documentation.html
Requirements
------------
Running SCons requires Python 3.5 or higher. There should be no other
dependencies or requirements to run SCons.
By default, SCons knows how to search for available programming tools on
various systems--see the SCons man page for details. You may, of course,
override the default SCons choices made by appropriate configuration of
Environment construction variables.
Licensing
=========
SCons is distributed under the MIT license, a full copy of which is available
in the LICENSE file.
Reporting Bugs
==============
The SCons project welcomes bug reports and feature requests.
Please make sure you send email with the problem or feature request to
the SCons users mailing list:
Join via: http://two.pairlist.net/mailman/listinfo/scons-users
Or the SCons Discord server #scons-help channel
Server URL: https://discord.gg/bXVpWAy
Once you have discussed your issue on the users mailing list and the
community has confirmed that it is either a new bug or a duplicate of an
existing bug, then please follow the instructions the community provides
to file a new bug or to add yourself to the CC list for an existing bug
You can explore the list of existing bugs, which may include workarounds
for the problem you've run into on GitHub Issues:
https://github.com/SCons/scons/issues
Mailing Lists
=============
An active mailing list for developers of SCons is available. You may
send questions or comments to the list at:
scons-dev@scons.org
You may subscribe to the developer's mailing list using form on this page:
http://two.pairlist.net/mailman/listinfo/scons-dev
Subscription to the developer's mailing list is by approval. In practice, no
one is refused list membership, but we reserve the right to limit membership
in the future and/or weed out lurkers.
There are other mailing lists available for SCons users, for notification of
SCons code changes, and for notification of updated bug reports and project
documents. Please see our mailing lists page for details.
Donations
=========
If you find SCons helpful, please consider making a donation (of cash,
software, or hardware) to support continued work on the project. Information
is available at:
http://www.scons.org/donate.html
or via GitHub Sponsors button on
https://github.com/scons/scons
For More Information
====================
Check the SCons web site at:
http://www.scons.org/
Copyright (c) 2001 - 2020 The SCons Foundation
|