blob: 8e519af798ecead4693259ac2f6384e850b10fca [file] [log] [blame]
George Liud7be5552024-09-20 10:39:09 +08001src_inc = ['..']
2if not meson.get_compiler('cpp').has_header('linux/peci-ioctl.h')
3 src_inc += ['../../include']
4endif
5
6executable(
7 'intelcpusensor',
8 'IntelCPUSensorMain.cpp',
9 'IntelCPUSensor.cpp',
Patrick Williamsff8c90e2025-02-01 08:37:02 -050010 dependencies: [default_deps, gpiodcxx, thresholds_dep, utils_dep, peci_dep],
George Liud7be5552024-09-20 10:39:09 +080011 include_directories: src_inc,
12 install: true,
Patrick Williamsff8c90e2025-02-01 08:37:02 -050013)