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.
24 lines
639 B
24 lines
639 B
project('evisum', 'c', |
|
version: '0.3.0', |
|
meson_version : '>= 0.40.0') |
|
|
|
efl_version = '>= 1.22.0' |
|
|
|
host_os = host_machine.system() |
|
|
|
deps = dependency('elementary', version: efl_version) |
|
|
|
deps_os = declare_dependency(link_args : [] ) |
|
if host_os == 'openbsd' |
|
deps_os = declare_dependency(link_args : [ '-lkvm' ]) |
|
endif |
|
|
|
##### dir locations |
|
dir_prefix = get_option('prefix') |
|
dir_bin = join_paths(dir_prefix, get_option('bindir')) |
|
dir_lib = join_paths(dir_prefix, get_option('libdir')) |
|
dir_data = join_paths(dir_prefix, get_option('datadir')) |
|
dir_locale = join_paths(dir_prefix, get_option('localedir')) |
|
|
|
subdir('src') |
|
subdir('data')
|
|
|