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.
25 lines
837 B
25 lines
837 B
project('devenv', 'c', |
|
# Because Windows Python ships only with optimized libs, |
|
# we must build this project the same way. |
|
default_options : ['buildtype=release'], |
|
) |
|
|
|
meson.add_devenv('TEST_A=1') |
|
foo_dep = dependency('foo', fallback: 'sub') |
|
|
|
env = environment() |
|
env.append('TEST_B', ['2', '3'], separator: '+') |
|
meson.add_devenv(env) |
|
|
|
meson.add_devenv({'TEST_B': '0'}, separator: '+', method: 'prepend') |
|
|
|
env = environment({'TEST_B': ['4']}, separator: '+', method: 'append') |
|
meson.add_devenv(env) |
|
|
|
# This exe links on a library built in another directory. On Windows this means |
|
# PATH must contain builddir/subprojects/sub to be able to run it. |
|
executable('app', 'main.c', dependencies: foo_dep, install: true) |
|
|
|
py = import('python').find_installation() |
|
py.install_sources('src/mymod/mod.py', subdir: 'mymod') |
|
subdir('src/mymod2')
|
|
|