libqaeda

Unnamed repository; edit this file 'description' to name the repository.
Info | Log | Files | Refs | README | LICENSE

meson.build (400B)


      1 project('cwalk', 'c',
      2   license: 'MIT',
      3   version: '1.2.9',
      4   meson_version: '>= 0.57.0'
      5 )
      6 
      7 cwalk_inc = include_directories('include')
      8 
      9 cwalk = library('cwalk', 'src/cwalk.c',
     10   install: true,
     11   include_directories: cwalk_inc
     12 )
     13 
     14 install_headers('include/cwalk.h')
     15 
     16 cwalk_dep = declare_dependency(include_directories: 'include', link_with: cwalk)
     17 
     18 if get_option('ENABLE_TESTS')
     19   subdir('test')
     20 endif