DSSeat: add hasPointer/Keyboard/Touch API
[platform/core/uifw/libds.git] / meson.build
1 project(
2         'libds',
3         ['c', 'cpp'],
4         version : '0.0.1',
5         license : 'MIT',
6         default_options : ['c_std=c11', 'cpp_std=c++17']
7         )
8
9 libds_version = meson.project_version().split('.')
10 libds_prefix = get_option('prefix')
11 libds_prefix_bindir = join_paths(libds_prefix, get_option('bindir'))
12 libds_prefix_libdir = join_paths(libds_prefix, get_option('libdir'))
13
14 subdir('src')
15 subdir('tests')
16 subdir('samples')