浏览代码

enet: Fix build on android and iphone platforms

Fixes #6156.
Rémi Verschelde 9 年之前
父节点
当前提交
2cf781d3c6
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      modules/enet/SCsub

+ 2 - 0
modules/enet/SCsub

@@ -2,5 +2,7 @@ Import('env')
 
 env.add_source_files(env.modules_sources,"*.cpp")
 env.add_source_files(env.modules_sources,"*.c")
+#TODO: Make it possible to build against system enet
+env.Append(CPPPATH = ["#modules/enet"])
 
 Export('env')