The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
496 B
13 lines
496 B
## Add support for `find_library` in Emscripten |
|
|
|
The `find_library` method can be used to find your own JavaScript |
|
libraries. The limitation is that they must have the file extension |
|
`.js`. Other library lookups will look up "native" libraries from the |
|
system like currently. A typical usage would look like this: |
|
|
|
```meson |
|
glue_lib = cc.find_library('gluefuncs.js', |
|
dirs: meson.current_source_dir()) |
|
executable('prog', 'prog.c', |
|
dependencies: glue_lib) |
|
```
|
|
|