You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Structure:** Each stub gets its own directory with all files:
119
+
```
120
+
generated_stubs/
121
+
├── simple-functions/
122
+
│ ├── CMakeLists.txt
123
+
│ ├── simple-functions.hpp
124
+
│ ├── simple-functions_wamr.hpp
125
+
│ └── simple-functions_wamr.cpp
126
+
├── integers/
127
+
│ ├── CMakeLists.txt
128
+
│ ├── integers.hpp
129
+
│ ├── integers_wamr.hpp
130
+
│ └── integers_wamr.cpp
131
+
...
132
+
```
133
+
134
+
**Note:** Stubs with `_wamr.cpp` files require WAMR (WebAssembly Micro Runtime) headers. The generated CMakeLists.txt includes helpful comments about dependencies and will automatically find the local cmcpp headers.
135
+
88
136
#### Code Generation Validation
89
137
90
138
The framework also validates generated code by attempting to compile it:
0 commit comments