diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-12-01 22:35:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-01 22:35:45 +0100 |
commit | e64a663c59141f972345852f0bce613e3f13dd3a (patch) | |
tree | af7b393e1665cba18d373eb67b257f005fbb197b /modules/camera/config.py | |
parent | d2858e23713314f286875c45b6bd176daf860171 (diff) | |
parent | 2ef8c5fac5db208e8b2220f67c666cb0934c9020 (diff) | |
download | redot-engine-e64a663c59141f972345852f0bce613e3f13dd3a.tar.gz |
Merge pull request #33992 from bruvzg/ios_modular_build
iOS modular build and export implementation.
Diffstat (limited to 'modules/camera/config.py')
-rw-r--r-- | modules/camera/config.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/camera/config.py b/modules/camera/config.py new file mode 100644 index 0000000000..d308c04195 --- /dev/null +++ b/modules/camera/config.py @@ -0,0 +1,5 @@ +def can_build(env, platform): + return platform == 'iphone' or platform == 'osx' or platform == 'windows' + +def configure(env): + pass |