您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

meson.build 651B

12345678910111213141516171819202122
  1. project('RadAngel', 'cpp', default_options : ['cpp_std=c++17'], license : ['AGPL3','GPL3'], version : '0.1')
  2. thread_dep = dependency('threads')
  3. udev_dir = get_option('udev-dir')
  4. install_udev_dir = (udev_dir != 'no')
  5. if install_udev_dir and udev_dir == ''
  6. udev_dir = dependency('udev').get_pkgconfig_variable('udevdir')
  7. endif
  8. systemd_unit_dir = get_option('systemd-unit-dir')
  9. install_systemd_unit_dir = (systemd_unit_dir != 'no')
  10. if install_systemd_unit_dir and systemd_unit_dir == ''
  11. systemd_unit_dir = dependency('systemd').get_pkgconfig_variable('systemdsystemunitdir')
  12. endif
  13. subdir('radangeld')
  14. #subdir('radangel-webmon')
  15. #subdir('src')