diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2019-11-29 08:54:39 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2019-12-01 21:57:18 +0200 |
commit | 2ef8c5fac5db208e8b2220f67c666cb0934c9020 (patch) | |
tree | 31f4d2f8765f86ad8b870030eba044eaec206019 /modules/camera/config.py | |
parent | 52e3993eb0bc98b94c6d65e6901c38daae73b7fa (diff) | |
download | redot-engine-2ef8c5fac5db208e8b2220f67c666cb0934c9020.tar.gz |
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 |