diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2016-10-10 19:50:51 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2016-10-15 11:50:39 +0200 |
commit | c31ad71f10f68705a456b4257c084d4008c34370 (patch) | |
tree | 661ac3c986d69876eda544a8292949e924e819ad /modules/enet/config.py | |
parent | 16ba665db6bbd7f15aadc35fda87d69d0b220bf7 (diff) | |
download | redot-engine-c31ad71f10f68705a456b4257c084d4008c34370.tar.gz |
enet: Split enet thirdparty files and allow unbundling
Building against shared libraries only implemented for Linux X11 so far.
TODO: Document Godot's modifications of upstream enet.
Diffstat (limited to 'modules/enet/config.py')
-rw-r--r-- | modules/enet/config.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/modules/enet/config.py b/modules/enet/config.py index ea7e83378a..368e97e152 100644 --- a/modules/enet/config.py +++ b/modules/enet/config.py @@ -1,11 +1,6 @@ - def can_build(platform): - return True - + return True def configure(env): pass - - - |