-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSConstruct
More file actions
32 lines (25 loc) · 1.26 KB
/
Copy pathSConstruct
File metadata and controls
32 lines (25 loc) · 1.26 KB
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
#!/usr/bin/env python
import os
import sys
# You can find documentation for SCons and SConstruct files at:
# https://scons.org/documentation.html
# This lets SCons know that we're using godot-cpp, from the godot-cpp folder.
env = SConscript("godot-cpp/SConstruct")
# Configures the 'src' directory as a source for header files.
env.Append(CPPPATH=["src/"])
# Collects all .cpp files in the 'src' folder as compile targets.
sources = Glob("src/*.cpp")
# The filename for the dynamic library for this GDExtension.
# $SHLIBPREFIX is a platform specific prefix for the dynamic library ('lib' on Unix, '' on Windows).
# $SHLIBSUFFIX is the platform specific suffix for the dynamic library (for example '.dll' on Windows).
# env["suffix"] includes the build's feature tags (e.g. '.windows.template_debug.x86_64')
# (see https://docs.godotengine.org/en/stable/tutorials/export/feature_tags.html).
# The final path should match a path in the '.gdextension' file.
lib_filename = "{}gdexample{}{}".format(env.subst('$SHLIBPREFIX'), env["suffix"], env.subst('$SHLIBSUFFIX'))
# Creates a SCons target for the path with our sources.
library = env.SharedLibrary(
"project/bin/{}".format(lib_filename),
source=sources,
)
# Selects the shared library as the default target.
Default(library)