Browse Source

enet: Fix build on android and iphone platforms

Fixes #6156.
Rémi Verschelde 9 năm trước cách đây
mục cha
commit
2cf781d3c6
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  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')