Merge 35905b11f3
into 5fcc43e54d
commit
9b138f2163
21
SConstruct
21
SConstruct
|
@ -21,16 +21,15 @@ env.PrependENVPath("PATH", os.getenv("PATH"))
|
|||
|
||||
# Custom options and profile flags.
|
||||
customs = ["custom.py"]
|
||||
try:
|
||||
customs += Import("customs")
|
||||
except:
|
||||
pass
|
||||
profile = ARGUMENTS.get("profile", "")
|
||||
if profile:
|
||||
if os.path.isfile(profile):
|
||||
customs.append(profile)
|
||||
elif os.path.isfile(profile + ".py"):
|
||||
customs.append(profile + ".py")
|
||||
if not profile.endswith('.py'):
|
||||
profile += '.py'
|
||||
|
||||
path = str(Entry('#' + profile))
|
||||
|
||||
if (os.path.isfile(path)):
|
||||
customs.append(path)
|
||||
opts = Variables(customs, ARGUMENTS)
|
||||
cpp_tool = Tool("godotcpp", toolpath=["tools"])
|
||||
cpp_tool.options(opts, env)
|
||||
|
@ -39,8 +38,10 @@ opts.Update(env)
|
|||
Help(opts.GenerateHelpText(env))
|
||||
|
||||
# Detect and print a warning listing unknown SCons variables to ease troubleshooting.
|
||||
unknown = opts.UnknownVariables()
|
||||
if unknown:
|
||||
# But only do that if this is top level SConstruct, not subsidiary
|
||||
if Dir("#").abspath == Dir(".").abspath:
|
||||
unknown = opts.UnknownVariables()
|
||||
if unknown:
|
||||
print("WARNING: Unknown SCons variables were passed and will be ignored:")
|
||||
for item in unknown.items():
|
||||
print(" " + item[0] + "=" + item[1])
|
||||
|
|
|
@ -198,6 +198,15 @@ def options(opts, env):
|
|||
)
|
||||
)
|
||||
|
||||
opts.Add(
|
||||
PathVariable(
|
||||
key="profile",
|
||||
help="Allow specification of customization file other than `custom.py`.",
|
||||
default=env.get("profile", None),
|
||||
validator=validate_file,
|
||||
)
|
||||
)
|
||||
|
||||
# Add platform options
|
||||
for pl in platforms:
|
||||
tool = Tool(pl, toolpath=["tools"])
|
||||
|
|
Loading…
Reference in New Issue