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
Since `fpm v0.14.0`, you can also build **multiple library types simultaneously** by specifying an array of types:
234
+
235
+
```toml
236
+
[library]
237
+
type = ["shared", "static"] # Build both shared and static libraries
238
+
```
239
+
240
+
This allows a single package to provide both shared and static library variants, giving downstream users the flexibility to choose the linking approach that best suits their needs. Note that the `"monolithic"` type (the default) cannot be combined with other types in the array.
0 commit comments