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.
12 lines
348 B
12 lines
348 B
project('static-hello', 'fortran') |
|
|
|
# staticlibsource = 'static_hello.f90' |
|
staticlibsource = configure_file( |
|
copy: true, |
|
input: 'static_hello.f90', |
|
output: 'static_hello_output.F90' |
|
) |
|
|
|
static_hello_lib = static_library('static_hello', staticlibsource, install: false) |
|
|
|
static_hello_dep = declare_dependency(link_with: static_hello_lib)
|
|
|