summaryrefslogtreecommitdiff
path: root/modules/camera_iphone/SCsub
blob: 0a37d9a6f53abeefc8a19f87b75a3f78add0b448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python

Import("env")
Import("env_modules")

env_camera = env_modules.Clone()

# (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, "*.cpp")
env_camera.add_source_files(modules_sources, "*.mm")
mod_lib = env_modules.add_library("#bin/libgodot_camera_module" + env["LIBSUFFIX"], modules_sources)