SCsub 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #!/usr/bin/env python
  2. Import("env")
  3. Import("env_modules")
  4. env_ws = env_modules.Clone()
  5. thirdparty_obj = []
  6. if env["platform"] == "web":
  7. # Our JavaScript/C++ interface.
  8. env.AddJSLibraries(["library_godot_websocket.js"])
  9. elif env["builtin_wslay"]:
  10. # Thirdparty source files
  11. thirdparty_dir = "#thirdparty/wslay/"
  12. thirdparty_sources = [
  13. "wslay_net.c",
  14. "wslay_event.c",
  15. "wslay_queue.c",
  16. "wslay_frame.c",
  17. ]
  18. thirdparty_sources = [thirdparty_dir + s for s in thirdparty_sources]
  19. env_ws.Prepend(CPPPATH=[thirdparty_dir])
  20. env_ws.Append(CPPDEFINES=["HAVE_CONFIG_H"])
  21. if env["platform"] == "windows":
  22. env_ws.Append(CPPDEFINES=["HAVE_WINSOCK2_H"])
  23. else:
  24. env_ws.Append(CPPDEFINES=["HAVE_NETINET_IN_H"])
  25. env_thirdparty = env_ws.Clone()
  26. env_thirdparty.disable_warnings()
  27. env_thirdparty.add_source_files(thirdparty_obj, thirdparty_sources)
  28. env.modules_sources += thirdparty_obj
  29. # Godot source files
  30. module_obj = []
  31. env_ws.add_source_files(module_obj, "*.cpp")
  32. if env.editor_build:
  33. env_ws.add_source_files(module_obj, "editor/*.cpp")
  34. env.modules_sources += module_obj
  35. # Needed to force rebuilding the module files when the thirdparty library is updated.
  36. env.Depends(module_obj, thirdparty_obj)