Skip to content

Commit 953a00a

Browse files
committed
update submodule and add import to SConstruct file
1 parent 446c1fe commit 953a00a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

SConstruct

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#!/usr/bin/env python
22
import os
3+
from SCons.Script import ARGUMENTS, Default, Environment, Glob, Help, SConscript, Variables
4+
from SCons.Errors import UserError
5+
from SCons.Variables import BoolVariable, PathVariable
36

47

58
def normalize_path(val, env):
@@ -57,7 +60,7 @@ file = "{}{}{}".format(libname, env["suffix"], env["SHLIBSUFFIX"])
5760

5861
if env["platform"] == "macos":
5962
platlibname = "{}.{}.{}".format(libname, env["platform"], env["target"])
60-
file = "{}.framework/{}".format(env["platform"], platlibname, platlibname)
63+
file = "{}.framework/{}".format(env["platform"], platlibname)
6164

6265
libraryfile = "bin/{}/{}".format(env["platform"], file)
6366
library = env.SharedLibrary(

godot-cpp

Submodule godot-cpp updated 61 files

0 commit comments

Comments
 (0)