bindings: Add dot before library extension

Prevents confusion between internet and internet-apps libraries when built in release mode
This commit is contained in:
Gabriel Ferreira
2025-07-26 19:28:55 +02:00
parent 891995d3d1
commit d6725226eb

View File

@@ -533,7 +533,7 @@ def load_modules():
cppyy.load_library(library)
for module in modules:
library_name_from_module = (
f"{version}-{module}{'-' if len(build_type)>0 else ''}{build_type}"
f"{version}-{module}{'-' if len(build_type)>0 else ''}{build_type}."
)
if library_name_from_module in library:
cppyy.include(f"ns3/{module}-module.h")