SCsub 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #!/usr/bin/env python
  2. import modules_builders
  3. import os
  4. Import("env")
  5. env_modules = env.Clone()
  6. Export("env_modules")
  7. # Header with MODULE_*_ENABLED defines.
  8. env.Depends("modules_enabled.gen.h", Value(env.module_list))
  9. env.CommandNoCache(
  10. "modules_enabled.gen.h",
  11. Value(env.module_list),
  12. env.Run(
  13. modules_builders.generate_modules_enabled,
  14. "Generating enabled modules header.",
  15. # NOTE: No need to run in subprocess since this is still executed serially.
  16. subprocess=False,
  17. ),
  18. )
  19. vs_sources = []
  20. test_headers = []
  21. # libmodule_<name>.a for each active module.
  22. for name, path in env.module_list.items():
  23. env.modules_sources = []
  24. # Name for built-in modules, (absolute) path for custom ones.
  25. base_path = path if os.path.isabs(path) else name
  26. SConscript(base_path + "/SCsub")
  27. lib = env_modules.add_library("module_%s" % name, env.modules_sources)
  28. env.Prepend(LIBS=[lib])
  29. if env["vsproj"]:
  30. vs_sources += env.modules_sources
  31. if env["tests"]:
  32. # Lookup potential headers in `tests` subfolder.
  33. import glob
  34. module_tests = sorted(glob.glob(os.path.join(base_path, "tests", "*.h")))
  35. if module_tests != []:
  36. test_headers += module_tests
  37. # Generate header to be included in `tests/test_main.cpp` to run module-specific tests.
  38. if env["tests"]:
  39. env.Depends("modules_tests.gen.h", test_headers)
  40. env.CommandNoCache(
  41. "modules_tests.gen.h",
  42. test_headers,
  43. env.Run(
  44. modules_builders.generate_modules_tests,
  45. "Generating modules tests header.",
  46. # NOTE: No need to run in subprocess since this is still executed serially.
  47. subprocess=False,
  48. ),
  49. )
  50. # libmodules.a with only register_module_types.
  51. # Must be last so that all libmodule_<name>.a libraries are on the right side
  52. # in the linker command.
  53. env.modules_sources = []
  54. env_modules.add_source_files(env.modules_sources, "register_module_types.gen.cpp")
  55. lib = env_modules.add_library("modules", env.modules_sources)
  56. env.Prepend(LIBS=[lib])
  57. if env["vsproj"]:
  58. env.modules_sources += vs_sources