-
Notifications
You must be signed in to change notification settings - Fork 11
/
SConstruct
48 lines (36 loc) · 1.73 KB
/
SConstruct
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
# rFactorTools
# Copyright (C) 2014 Ingo Ruhnke <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
env = Environment(CFLAGS=["-O3", "-g"])
env.Program("rfactordec", ["rfactordec.c"])
py_env = Environment(SHLIBPREFIX = '',
CCFLAGS=['-Wall', '-Werror', '-O3', '-g'])
py_env.ParseConfig("python3-config --cflags --ldflags | sed -e 's/-Werror=declaration-after-statement//' -e 's/-Wstrict-prototypes//'")
py_env.SharedLibrary('rfactortools/_crypt', ['rfactortools_crypt.cpp'])
sources = Glob("*.py", strings=True) + \
Glob("rfactortools/*.py", strings=True) + \
Glob("rfactortools/gui/*.py", strings=True) + \
Glob("rfactortools/gui/*.pyw", strings=True) + \
Glob("tests/*.py", strings=True)
flake_check = Command(None, sources,
"python3 -m flake8.run --max-line-length=120 $SOURCES")
AlwaysBuild(Alias("test", [], "python3 -m unittest discover"))
for i in sources:
Alias("pylint", Command(i + ".pylint", i, "epylint $SOURCE"))
# Alias("pylint", [], "epylint %s" % i)
# AlwaysBuild("pylint")
Default(flake_check)
Alias("all", [flake_check, "pylint", "test"])
# EOF #