You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
619 B
Python
26 lines
619 B
Python
#!/usr/bin/env python
|
|
import os
|
|
import sys
|
|
|
|
env = SConscript("godot-cpp/SConstruct")
|
|
|
|
env.Append(CPPPATH=["src/"])
|
|
sources = Glob("src/*.cpp")
|
|
|
|
if env["platform"] == "osx":
|
|
library = env.SharedLibrary(
|
|
"bin/libgdexample.{}.{}.framework/libgdexample.{}.{}".format(
|
|
env["platform"], env["target"], env["platform"], env["target"]
|
|
),
|
|
source=sources,
|
|
)
|
|
else:
|
|
library = env.SharedLibrary(
|
|
"bin/libgdexample.{}.{}.{}{}".format(
|
|
env["platform"], env["target"], env["arch_suffix"], env["SHLIBSUFFIX"]
|
|
),
|
|
source=sources,
|
|
)
|
|
|
|
Default(library)
|