| 12345678910111213141516171819202122232425 |
- project('RadAngel', 'cpp', default_options : ['cpp_std=c++17'], license : ['AGPL3','GPL3'], version : '0.1')
-
- thread_dep = dependency('threads')
- boost_dep = dependency('boost', modules : 'program_options')
- zmqpp_dep = dependency('libzmqpp')
-
- udev_dir = get_option('udev-dir')
- install_udev_dir = (udev_dir != 'no')
-
- if install_udev_dir and udev_dir == ''
- udev_dir = dependency('udev').get_pkgconfig_variable('udevdir')
- endif
-
- systemd_unit_dir = get_option('systemd-unit-dir')
- install_systemd_unit_dir = (systemd_unit_dir != 'no')
-
- if install_systemd_unit_dir and systemd_unit_dir == ''
- systemd_unit_dir = dependency('systemd').get_pkgconfig_variable('systemdsystemunitdir')
- endif
-
- subdir('radangeld')
- subdir('radangeldump')
- #subdir('radangel-webmon')
- #subdir('src')
|