diff --git a/aidge_export_cpp/export_registry.py b/aidge_export_cpp/export_registry.py
index 2210e9994e1cc18004238725d44a6281be442368..06d9bb55be44947e99c5fdc5a8429c04799bf964 100644
--- a/aidge_export_cpp/export_registry.py
+++ b/aidge_export_cpp/export_registry.py
@@ -1,4 +1,11 @@
 from aidge_core.export_utils import ExportLib
+from aidge_export_cpp.utils import ROOT
 
 class ExportLibCpp(ExportLib):
-    _name="export_cpp"
+    name="export_cpp"
+    static_files={
+        str(ROOT / "static" / "Makefile"): "",
+        str(ROOT / "static" / "include" / "network" / "rescaling.hpp"): "dnn/include/network",
+        str(ROOT / "static" / "include" / "network" / "typedefs.hpp"): "dnn/include/network",
+        str(ROOT / "static" / "include" / "network" / "utils.hpp"): "dnn/include/network",
+    }