[FL-2052] New build system based on scons (#1269)
This commit is contained in:
13
site_scons/site_tools/python3.py
Normal file
13
site_scons/site_tools/python3.py
Normal file
@@ -0,0 +1,13 @@
|
||||
def generate(env):
|
||||
py_name = "python3"
|
||||
if env["PLATFORM"] == "win32":
|
||||
# On Windows, Python 3 executable is usually just "python"
|
||||
py_name = "python"
|
||||
|
||||
env.SetDefault(
|
||||
PYTHON3=py_name,
|
||||
)
|
||||
|
||||
|
||||
def exists(env):
|
||||
return True
|
||||
Reference in New Issue
Block a user