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.
17 lines
329 B
17 lines
329 B
7 years ago
|
project('foobar', 'c')
|
||
|
|
||
|
win = import('windows')
|
||
|
|
||
|
subdir('a')
|
||
|
subdir('b')
|
||
|
subdir('c')
|
||
|
|
||
|
main = win.compile_resources('rsrc.rc')
|
||
|
|
||
|
# these make the resource compilation a dependency of something which is built
|
||
|
# by default
|
||
|
static_library('libmain', main)
|
||
|
static_library('liba', a)
|
||
|
static_library('libb', b)
|
||
|
static_library('libc', c)
|