File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -230,6 +230,11 @@ See [specifying dependencies](#specifying-dependencies) for more details.
230
230
231
231
> Dependencies supported in Bootstrap fpm only
232
232
233
+ Executables can also specify their own external library dependencies.
234
+ See [ external libraries] ( #link-external-libraries ) for more details.
235
+
236
+ > Currently not supported in any version
237
+
233
238
* Example:*
234
239
235
240
``` toml
@@ -240,6 +245,7 @@ main = "program.f90"
240
245
241
246
[[ executable ]]
242
247
name = " app-tool"
248
+ link = " z"
243
249
[executable .dependencies ]
244
250
helloff = { git = " https://gitlab.com/everythingfunctional/helloff.git" }
245
251
```
@@ -269,6 +275,11 @@ See [specifying dependencies](#specifying-dependencies) for more details.
269
275
270
276
> Dependencies supported in Bootstrap fpm only
271
277
278
+ Tests can also specify their own external library dependencies.
279
+ See [ external libraries] ( #link-external-libraries ) for more details.
280
+
281
+ > Currently not supported in any version
282
+
272
283
* Example:*
273
284
274
285
``` toml
@@ -279,6 +290,7 @@ main = "tester.F90"
279
290
280
291
[[ test ]]
281
292
name = " tester"
293
+ link = [" blas" , " lapack" ]
282
294
[test .dependencies ]
283
295
helloff = { git = " https://gitlab.com/everythingfunctional/helloff.git" }
284
296
```
You can’t perform that action at this time.
0 commit comments