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.
14 lines
441 B
14 lines
441 B
5 years ago
|
project('multiframework', 'objc')
|
||
|
|
||
|
# In theory only 'AppKit' would be enough but there was a bug
|
||
|
# that causes a build failure when defining two modules. The
|
||
|
# arguments for the latter module overwrote the arguments for
|
||
|
# the first one rather than adding to them.
|
||
|
cocoa_dep = dependency('appleframeworks', modules : ['AppKit', 'foundation'])
|
||
|
|
||
|
executable('deptester',
|
||
|
'main.m',
|
||
|
objc_args : ['-fobjc-arc'],
|
||
|
dependencies : [cocoa_dep],
|
||
|
)
|