mirror of
https://github.com/godotengine/godot.git
synced 2024-11-24 13:12:42 +00:00
SCons: Enable iOS modules for ARKit and Camera
This commit is contained in:
parent
488879f52b
commit
c3e7aeb279
@ -5,6 +5,9 @@ Import("env_modules")
|
||||
|
||||
env_arkit = env_modules.Clone()
|
||||
|
||||
# (iOS) Enable module support
|
||||
env_arkit.Append(CCFLAGS=["-fmodules", "-fcxx-modules"])
|
||||
|
||||
# (iOS) Build as separate static library
|
||||
modules_sources = []
|
||||
env_arkit.add_source_files(modules_sources, "*.cpp")
|
||||
|
@ -6,6 +6,9 @@ Import("env_modules")
|
||||
env_camera = env_modules.Clone()
|
||||
|
||||
if env["platform"] == "iphone":
|
||||
# (iOS) Enable module support
|
||||
env_camera.Append(CCFLAGS=["-fmodules", "-fcxx-modules"])
|
||||
|
||||
# (iOS) Build as separate static library
|
||||
modules_sources = []
|
||||
env_camera.add_source_files(modules_sources, "register_types.cpp")
|
||||
|
Loading…
Reference in New Issue
Block a user